@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&family=Inter:wght@400;700&display=swap');
:root {
  --primary: #2e1065;
  --secondary: #f43f5e;
  --accent: #fbbf24;
  --background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  --glass: rgba(255,255,255,0.7);
  --glass-dark: rgba(30,41,59,0.55);
  --text-main: #1e293b;
  --text-light: #fff;
  --shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  --radius: 2rem;
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  background: var(--background);
  color: var(--text-main);
  min-height: 100vh;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  position: sticky;
  top: 0; z-index: 10;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary) 90%);
  box-shadow: var(--shadow);
  padding: 0.5rem 0 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}
.logo {
  width: 52px; height: 52px; margin-left: 2rem;
  background: var(--glass);
  border-radius: 50%;
  box-shadow: 0 2px 10px #f43f5e22;
}
.header-content {
  flex: 1;
  text-align: center;
}
h1 {
  margin: 0.2rem 0 0.1rem 0;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-shadow: 0 2px 16px #f43f5e33;
}
.tagline {
  font-size: 1.15rem;
  font-weight: 400;
  color: #fefefe;
  opacity: 0.92;
  margin-bottom: 0.2rem;
}
.hero {
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f43f5e22 0%, #2e1065 100%);
  border-radius: var(--radius);
  margin: 2rem auto 1.5rem auto;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-align: center;
}
.cta-btn {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--text-light);
  border: none;
  border-radius: 2rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 16px #f43f5e33;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 2.5rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: translateY(-2px) scale(1.04);
}
main {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  padding: 2.5rem 2rem 0 2rem;
  background: var(--glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
section {
  margin-bottom: 2.7rem;
}
section h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
}
li {
  margin-bottom: 0.6rem;
}
.entertainment {
  background: var(--glass-dark);
  border-radius: 1.2rem;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 18px #2e106522;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
.entertainment h2 { color: var(--accent); }
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.entertainment-card {
  background: linear-gradient(120deg, #fff 70%, #fbbf2433 100%);
  border-radius: 1rem;
  box-shadow: 0 2px 12px #fbbf2422;
  padding: 1.2rem 1rem;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 90px;
  border: 1.5px solid #fbbf2455;
}
.entertainment-card a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  transition: color 0.2s;
}
.entertainment-card a:hover, .entertainment-card a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.entertainment-card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px #2e106533;
  border-color: var(--secondary);
}
.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px #2e106522);
}
footer {
  background: linear-gradient(90deg, #2e1065 60%, #f43f5e 100%);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem 1.2rem 1rem;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  margin-top: auto;
  box-shadow: 0 -2px 24px #2e106522;
  backdrop-filter: blur(8px);
}
footer div {
  font-size: 1.05rem;
}
footer .footer-note {
  font-size: 0.98rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  main { padding: 1.2rem 0.5rem 0 0.5rem; }
  .hero { margin: 1.2rem 0.5rem 1rem 0.5rem; }
  header { padding-left: 0.5rem; padding-right: 0.5rem; }
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  .hero-title { font-size: 1.4rem; }
  main { padding: 0.7rem 0.2rem 0 0.2rem; }
  .entertainment-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .logo { margin-left: 0.5rem; }
}
