//* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  background: #000000;
  color: #f0f0f0;
  line-height: 1.6;
  min-height: 100vh;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
}

/* ==========================================================================
   Header & Main Title
   ========================================================================== */
header {
  background: #000000;
  padding: 4rem 0 2.5rem;
}

h1 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 
    0 0 12px rgba(255, 0, 0, 0.5),
    4px 4px 0 #000,
    -4px -4px 0 #000,
    4px -4px 0 #000,
    -4px 4px 0 #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 .title-part {
  display: inline-block;
}

h1 .white {
  color: #ffffff;
}

h1 .red {
  color: #ff0000;
}

.tagline {
  font-family: 'Arial', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #cccccc;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 3rem 0 4rem;
}

.book-cover {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(255, 0, 0, 0.25), 0 0 30px rgba(0,0,0,0.9);
  margin: 0 auto 2rem;
  display: block;
  border: 2px solid #222;
}

/* ==========================================================================
   Headings
   ========================================================================== */
h2 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 3rem;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.buy-buttons {
  margin: 2rem 0;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  margin: 0.6rem;
  background: #ff0000;
  color: #ffffff;
  font-family: 'Arial Black', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #d00000;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.6);
}

/* ==========================================================================
   Images
   ========================================================================== */
.author-photo,
.press-logo {
  max-width: 160px;
  border-radius: 50%;
  border: 3px solid #222;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  display: block;
  margin: 1.8rem auto;
}

/* ==========================================================================
   Sections
   ========================================================================== */
section {
  padding: 4rem 0;
  background: #0d0d0d;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* ==========================================================================
   Newsletter & Footer
   ========================================================================== */
input[type="email"] {
  padding: 1rem;
  width: 68%;
  background: #111;
  border: 2px solid #333;
  color: white;
  border-radius: 8px 0 0 8px;
  font-size: 1.1rem;
}

button {
  padding: 1rem 2rem;
  background: #ff0000;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #d00000;
}

footer {
  background: #000;
  padding: 2.5rem 0;
  color: #888;
  font-size: 0.95rem;
  border-top: 1px solid #222;
}

/* ==========================================================================
   Mobile
   ========================================================================== */
@media (max-width: 768px) {
  h1 { font-size: 3.8rem; letter-spacing: 0.04em; }
  .tagline { font-size: 1.4rem; }
  .book-cover { max-width: 260px; }
  h2 { font-size: 2.6rem; }
  .btn { padding: 0.9rem 2rem; font-size: 1.2rem; }
}