/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-style: italic;
}

.german-flag {
  font-size: 1.2rem;
}

.navigation {
  display: flex;
  gap: 2rem;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.navigation a:hover {
  opacity: 0.8;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b9d 100%);
  padding: 120px 0 40px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: pulse 3s ease-in-out infinite;
}

.hero-main-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: bounceIn 1.2s ease-out;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  animation: fadeInUp 1.5s ease-out;
  position: relative;
  z-index: 2;
}

/* Video Section Styles */
.video-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.video-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
}

.video-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ffd700;
  animation: blink 2s ease-in-out infinite;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.main-video {
  width: 100%;
  height: 450px;
  background: #000;
  border-radius: 15px;
  object-fit: cover;
}

.custom-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.custom-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.custom-play-button {
  font-size: 4rem;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 2rem;
}

.video-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  height: 450px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  z-index: 3;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 2rem;
  color: white;
  text-align: left;
}

.proxelbit-logo {
  background-color: #000000;
  color: #00ff88;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.video-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-urgent {
  font-size: 1.1rem;
  color: #ffd700;
  font-weight: 600;
}

.video-cta-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

.video-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

/* Main Content */
.main-content {
  padding: 40px 0 80px;
  background-color: #ffffff;
}

.main-subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1e40af;
  animation: fadeInUp 0.8s ease-out;
}

/* Featured Partner */
.featured-partner {
  background: linear-gradient(135deg, #4f46e5 0%, #1e40af 100%);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0 3rem;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 2rem;
  align-items: center;
  color: white;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.featured-partner::before {
  content: '💎';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  animation: sparkle 2s ease-in-out infinite;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.proxelbit-logo-main {
  background-color: #000000;
  color: #00ff88;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid #00ff88;
}

.partner-info {
  flex: 1;
}

.partner-rating {
  margin-bottom: 1rem;
}

.rating-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.rating-score {
  font-size: 1.8rem;
  font-weight: 800;
  margin-left: 0.5rem;
  color: #ffd700;
}

.partner-features p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.partner-action {
  display: flex;
  align-items: center;
}

.invest-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.invest-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

/* Partners Section */
.partners-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #dc2626;
  animation: fadeInUp 0.8s ease-out;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.partner-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '🔥';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.partner-card-logo {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  padding: 0.8rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dynamic-lexapro {
  background-color: #1f2937;
  color: #fbbf24;
}

.drextorfeed {
  background-color: #dc2626;
  color: white;
}

.nexenbit {
  background-color: #000000;
  color: #00ff88;
}

.tesler {
  background-color: #1f2937;
  color: #10b981;
}

.partner-card-rating {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.partner-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.partner-teaser {
  font-size: 0.9rem;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
}

.partner-card-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.partner-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.partner-disclaimer {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Urgency Section */
.urgency-section {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 40px 0;
  color: white;
  text-align: center;
}

.urgency-box {
  background: rgba(0,0,0,0.2);
  border-radius: 15px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid #ffd700;
}

.urgency-box h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: blink 2s ease-in-out infinite;
}

.urgency-box p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.countdown {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  animation: pulse 1s ease-in-out infinite;
}

.final-cta {
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
  color: #000;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

.final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.5;
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.2);
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  75% {
    transform: rotate(270deg) scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .navigation {
    gap: 1rem;
  }
  
  .hero-main-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .video-title {
    font-size: 1.8rem;
  }
  
  .video-subtitle {
    font-size: 1rem;
  }
  
  .video-placeholder {
    height: 300px;
  }
  
  .main-subtitle {
    font-size: 1.6rem;
  }
  
  .featured-partner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .urgency-box h3 {
    font-size: 1.5rem;
  }
  
  .urgency-box p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .video-title {
    font-size: 1.5rem;
  }
  
  .partners-title {
    font-size: 1.6rem;
  }
  
  .featured-partner {
    padding: 1.5rem;
  }
  
  .final-cta {
    font-size: 1.1rem;
    padding: 15px 25px;
  }
}