@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-color: #0b0f19;
  --surface-color: #1a2235;
  --surface-hover: #232d45;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --primary-color: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.4);
  --accent-color: #3b82f6;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

@keyframes glow {
  0% { box-shadow: 0 0 15px var(--primary-glow); }
  50% { box-shadow: 0 0 30px var(--primary-glow); }
  100% { box-shadow: 0 0 15px var(--primary-glow); }
}

.fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--primary-color);
  font-size: 1.8rem;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 600;
  transition: var(--transition);
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #059669);
  color: #fff;
  border: none;
  animation: glow 3s infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--primary-glow);
}

.header-btn {
  padding: 8px 20px;
  font-size: 0.95rem;
  animation: none;
}

/* Hero Section */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes floatAnim {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 40px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 80px rgba(16,185,129,0.5); }
  100% { box-shadow: 0 0 40px rgba(16,185,129,0.2); }
}

.turtle-shield {
  width: 300px;
  height: 330px;
  background: linear-gradient(135deg, var(--surface-color), #059669);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Hexagon */
  animation: floatAnim 6s ease-in-out infinite, pulseGlow 4s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.turtle-shield::after {
  content: '🐢';
  font-size: 6rem;
  animation: floatAnim 4s ease-in-out infinite reverse;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(11,15,25,0) 60%);
  z-index: -1;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 0 2.5rem 0;
}

.hero .btn-primary {
  font-size: 1.2rem;
  padding: 16px 48px;
}

.hero-btns {
  justify-content: flex-start !important;
}

/* Sections */
.section {
  padding: 5rem 0;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  background: var(--surface-hover);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  padding: 15px;
  border-radius: 16px;
  color: var(--primary-color);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
}

/* Streaming & AI */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.media-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(145deg, var(--surface-color), #0b0f19);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.media-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.media-icon {
  font-size: 2.5rem;
}

.media-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.media-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border-color: var(--primary-color);
  position: relative;
  background: linear-gradient(180deg, var(--surface-color), rgba(16, 185, 129, 0.05));
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
  flex-grow: 1;
}

.price-card ul li {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-card ul li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  background: rgba(16, 185, 129, 0.1);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.price-card .btn {
  width: 100%;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--surface-hover);
  border-color: var(--text-muted);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.reviewer-info h5 {
  font-size: 1rem;
}

.reviewer-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 16px;
  margin-bottom: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-color);
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--text-muted);
}

/* Footer */
footer {
  background: #06080d;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Page Styles (for inner pages) */
.page-header {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(16,185,129,0.1), transparent);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.page-content h3 {
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; margin-bottom: 2rem; }
  
  .hero { padding: 4rem 0 3rem; text-align: center; }
  .hero-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { text-align: center; }
  .hero p { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center !important; }
  .turtle-shield { width: 200px; height: 220px; }
  .turtle-shield::after { font-size: 4rem; }
  .main-nav { display: none; }
  .section { padding: 3rem 0; }
  
  .price-card.popular { 
    transform: none; 
    box-shadow: none;
  }
  
  header .container {
    padding: 0 15px;
  }
  
  .header-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .btn-primary.hero-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
  }
  
  .footer-links { 
    flex-direction: column; 
    text-align: center; 
    gap: 1.5rem; 
  }
  
  .card, .price-card, .faq-item {
    padding: 1.5rem;
  }
}
