body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', Arial, sans-serif;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e9ecef;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.01em;
}

.main-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 100px 40px 80px 40px;
  height: 100vh;
  box-sizing: border-box;
}

.video-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.right-section {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  align-items: center;
}

.video-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.video-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #d4af37;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.video-description {
  font-size: 1.1rem;
  color: #666666;
  margin: 0 0 30px 0;
  line-height: 1.5;
  max-width: 600px;
  font-weight: 400;
}

.video-container {
  position: relative;
  margin: 0 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-trigger {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
  /* background: #000; */
  padding: 8px;
  width: 700px;
}

.video-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.laptop-photo {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: all 0.3s ease;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(212, 175, 55, 0.8);
}

.play-icon {
  color: #d4af37;
  font-size: 16px;
  font-weight: bold;
  margin-left: 4px;
}

.video-trigger:hover .play-overlay {
  background: rgba(212, 175, 55, 0.9);
  border-color: #d4af37;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-trigger:hover .play-icon {
  color: #000;
}

.youtube-container {
  max-width: 700px;
  max-height: 400px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin: 0 auto;
}

.youtube-video {
  width: 100%;
  height: 400px;
  border-radius: 16px;
}

.cta-button {
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', Arial, sans-serif;
  width: 100%;
  margin-top: auto;
}

.cta-button:hover {
  background: linear-gradient(135deg, #e6c547, #d4af37);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.book-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  flex: 1;
}

.book-cover {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.book-cover:hover {
  transform: scale(1.02);
}

.book-info {
  text-align: center;
  width: 100%;
}

.book-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.book-subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  color: #666666;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.coming-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888888;
  margin: 0;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  z-index: 10;
}

.copyright {
  color: #888888;
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: rgba(10, 15, 26, 0.95);
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.close {
  color: #d4af37;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close:hover {
  color: #e6c547;
}

.form-section {
  background: rgba(20, 30, 50, 0.6);
  padding: 30px;
  border-radius: 20px;
  margin: 0;
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
}

#mc_embed_shell {
  width: 100%;
  margin-bottom: 0;
}

#mc_embed_signup {
  width: 100%;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  display: block;
}

#mc_embed_signup_scroll {
  width: 100%;
  padding: 0;
}

#mc_embed_signup h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  padding: 0;
  text-align: center;
}

.indicates-required {
  font-size: 0.9rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
  text-align: center;
}

.mc-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
  width: 100%;
}

.mc-field-group label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mc-field-group input[type="email"],
.mc-field-group input[type="text"] {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', Arial, sans-serif;
  background: rgba(255, 255, 255, 0.95);
  color: #0a0f1a;
  font-weight: 500;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mc-field-group input[type="email"]:focus,
.mc-field-group input[type="text"]:focus {
  border-color: #d4af37;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  background: #ffffff;
}

#mc-embedded-subscribe {
  padding: 0.8rem 2rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #0a0f1a;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  text-transform: uppercase;
  width: 100%;
}

#mc-embedded-subscribe:hover {
  background: linear-gradient(135deg, #e6c547, #d4af37);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-content {
    flex-direction: column;
    gap: 30px;
    padding: 100px 20px 100px 20px;
    height: auto;
  }
  
  .right-section {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .video-section {
    height: auto;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  
  .main-content {
    padding: 90px 20px 100px 20px;
  }
  
  .video-title {
    font-size: 2.2rem;
  }
  
  .video-subtitle {
    font-size: 1.2rem;
  }
  
  .video-description {
    font-size: 0.9rem;
  }
  
  .video-trigger {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .laptop-photo {
    max-width: 100%;
    width: 100%;
  }
  
  .play-overlay {
    width: 70px;
    height: 70px;
  }
  
  .play-icon {
    font-size: 22px;
  }
  
  .youtube-container {
    max-width: 350px;
    height: 200px;
  }
  
  .youtube-video {
    height: 200px;
  }
  
  .book-section {
    padding: 20px;
  }
  
  .book-cover {
    max-width: 140px;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .form-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 15px;
  }
  
  .main-content {
    padding: 80px 15px 100px 15px;
  }
  
  .video-title {
    font-size: 1.8rem;
  }
  
  .video-subtitle {
    font-size: 1.1rem;
  }
  
  .video-trigger {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .laptop-photo {
    max-width: 100%;
    width: 100%;
  }
  
  .play-overlay {
    width: 60px;
    height: 60px;
  }
  
  .play-icon {
    font-size: 20px;
  }
  
  .youtube-container {
    max-width: 350px;
    height: 200px;
  }
  
  .youtube-video {
    height: 200px;
  }
  
  .book-section {
    padding: 15px;
  }
  
  .book-cover {
    max-width: 120px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .modal-content {
    margin: 15% auto;
    width: 98%;
  }
  
  .form-section {
    padding: 15px;
  }
  
  .close {
    font-size: 24px;
    top: 15px;
    right: 20px;
  }
}