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

:root {
  --primary: #1a174d;
  --accent: #ffb347;
  --background-gradient: linear-gradient(135deg, #2e1a47 0%, #4f2e7e 50%, #ffb347 100%);
  --card-glass: rgba(255, 255, 255, 0.18);
  --card-border: rgba(255, 255, 255, 0.32);
  --text: #181b2a;
  --footer-bg: #19112d;
  --footer-text: #ffb347;
  --link: #7f5af0;
  --link-hover: #ffb347;
  --ent-card-bg: rgba(255,255,255,0.22);
  --ent-card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --ent-card-hover: #ffb347;
  --glass-blur: blur(16px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--background-gradient);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.sticky-glass {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 23, 77, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(50, 30, 80, 0.09);
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2.2rem 0.5rem 1.2rem;
}
.logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(44, 12, 94, 0.10);
  flex-shrink: 0;
}
.brand-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 0 1.2rem 0 0.6rem;
  flex-grow: 1;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 2rem;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  margin-top: 2px;
}
.main-nav a:hover {
  color: var(--accent);
}
.main-nav a:hover::after {
  width: 100%;
}

.hero {
  width: 100vw;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #2e1a47 60%, #ffb347 120%);
  box-shadow: 0 8px 40px 0 rgba(31, 38, 135, 0.09);
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 650px;
  padding: 3.5rem 2rem 3rem 2rem;
  background: rgba(255,255,255,0.10);
  border-radius: 32px;
  box-shadow: 0 4px 40px 0 rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.77,0,.18,1), transform 0.9s cubic-bezier(.77,0,.18,1);
}
.hero-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.gradient-text {
  background: linear-gradient(90deg, #ffb347 30%, #7f5af0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #7f5af0 20%, #ffb347 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  padding: 0.85em 2.2em;
  box-shadow: 0 4px 20px 0 rgba(127,90,240,0.18);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #ffb347 20%, #7f5af0 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 28px 0 rgba(255,179,71,0.18);
}

main {
  max-width: 1100px;
  margin: 2.5rem auto 2rem auto;
  padding: 0 1.2rem;
}

.glass-card {
  background: var(--card-glass);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(31, 38, 135, 0.11);
  border: 1.5px solid var(--card-border);
  backdrop-filter: var(--glass-blur);
  margin: 2.5rem 0 2.2rem 0;
  padding: 2.2rem 2rem 2.2rem 2rem;
}
.features h2, .about h2 {
  color: var(--accent);
  margin-top: 0;
  font-size: 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.2rem;
  margin-top: 1.5rem;
}
.feature-item {
  background: rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(31, 38, 135, 0.08);
  padding: 1.5rem 1.1rem 1.2rem 1.1rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(127,90,240,0.13);
  transform: translateY(-3px) scale(1.02);
}
.feature-icon {
  font-size: 2.1rem;
  color: var(--link);
  margin-bottom: 0.5rem;
  display: block;
}

.entertainment-section {
  margin: 3.2rem 0 2.2rem 0;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 1.5rem;
  margin: 0;
  padding: 0;
}
.ent-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ent-card-bg);
  border-radius: 18px;
  box-shadow: var(--ent-card-shadow);
  padding: 2.2rem 1.2rem;
  font-weight: 600;
  color: var(--link);
  text-decoration: none;
  font-size: 1.09rem;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s, color 0.2s, background 0.22s, transform 0.18s;
  border: 1.5px solid rgba(127,90,240,0.11);
  z-index: 1;
}
.ent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(127,90,240,0.07) 0%, rgba(255,179,71,0.09) 100%);
  opacity: 0.85;
  z-index: -1;
  border-radius: 18px;
  transition: opacity 0.2s;
}
.ent-card:hover {
  color: #fff;
  background: var(--ent-card-hover);
  box-shadow: 0 8px 40px 0 rgba(255,179,71,0.18), 0 2px 10px 0 rgba(127,90,240,0.13);
  transform: translateY(-3px) scale(1.03);
}
.ent-card:hover::before {
  opacity: 0.95;
}

.about {
  margin-bottom: 2.2rem;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 1.5rem 0 2rem 0;
  margin-top: 3rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer-favicon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.2rem;
}
.site-footer a {
  color: var(--footer-text);
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  main {
    padding: 0 0.7rem;
  }
  .hero-content {
    padding: 2.2rem 1rem 2rem 1rem;
  }
  .features-grid {
    gap: 1.1rem;
  }
  .entertainment-grid {
    gap: 1.1rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .sticky-glass { flex-direction: column; align-items: flex-start; padding: 0.7rem 0.7rem 0.7rem 0.7rem; }
  .logo { width: 48px; height: 48px; }
  .brand-title { font-size: 1.3rem; margin: 0.3rem 0 0.6rem 0; }
  .main-nav { width: 100%; display: flex; gap: 1rem; justify-content: flex-start; }
  .main-nav a { margin-left: 0; font-size: 1rem; }
  .hero-title { font-size: 1.5rem; }
  .hero-content { padding: 1.5rem 0.5rem 1.2rem 0.5rem; }
  .features, .about { padding: 1.1rem 0.5rem 1rem 0.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .entertainment-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .footer-favicon { width: 36px; height: 36px; }
}
