@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Manrope:wght@400;700&display=swap');
:root {
  --primary: #5D3FD3;
  --accent: #FF8C42;
  --bg: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  --text: #232946;
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(93,63,211,0.07);
  --footer-bg: linear-gradient(90deg, #232946 0%, #5D3FD3 100%);
  --footer-text: #fff;
  --gradient-hero: linear-gradient(120deg, #5D3FD3 0%, #FF8C42 100%);
  --cta: #FF8C42;
  --cta-hover: #ffb877;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', 'Montserrat', Arial, sans-serif;
  background: #f8fafc;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: var(--bg);
}
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 3.5rem 0 2.5rem 0;
  text-align: center;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-logo {
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 16px rgba(93,63,211,0.11));
}
.hero h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.8rem;
  letter-spacing: 1.5px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 2px 12px rgba(93,63,211,0.10);
}
.hero-desc {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 1.7rem 0;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(93,63,211,0.09);
}
.cta-btn {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  padding: 0.85em 2.1em;
  border-radius: 2em;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(255,140,66,0.13);
  transition: background 0.18s, transform 0.13s;
}
.cta-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-2px) scale(1.04);
}
.hero-bg {
  position: absolute;
  left: 0; bottom: 0; width: 100%; height: 130px;
  z-index: 1;
  pointer-events: none;
}
main {
  flex: 1 0 auto;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.5rem 1rem;
}
.featured-insights {
  margin: 2.5rem 0 2.5rem 0;
}
.featured-insights h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.6rem;
  color: var(--primary);
}
.insights-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.insight-card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: transform 0.16s, box-shadow 0.16s;
  border-left: 6px solid var(--primary);
}
.insight-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(93,63,211,0.13);
  border-left: 6px solid var(--accent);
}
.insight-card h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.25rem;
}
.entertainment {
  margin: 3.5rem 0 2.5rem 0;
  background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  border-radius: 18px;
  box-shadow: 0 1px 12px rgba(255, 140, 66, 0.09);
}
.entertainment h2 {
  margin-top: 0;
  color: #d35400;
  font-size: 1.5rem;
  text-align: center;
}
.entertainment-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: center;
  margin-top: 1.3rem;
}
.ent-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255,140,66,0.07);
  padding: 1.1rem 1.3rem;
  min-width: 180px;
  max-width: 250px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.07rem;
  color: #232946;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.13s, box-shadow 0.13s, background 0.13s;
  border-left: 4px solid var(--cta);
  position: relative;
}
.ent-card:hover {
  transform: translateY(-4px) scale(1.04);
  background: #f8fafc;
  box-shadow: 0 6px 24px rgba(255,140,66,0.13);
  border-left: 4px solid var(--primary);
}
.ent-icon {
  font-size: 1.45em;
  margin-right: 0.4em;
  flex-shrink: 0;
}
.why-us {
  margin: 3.5rem 0 1.5rem 0;
}
.why-us h2 {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.why-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 1.3rem 1.1rem;
  min-width: 160px;
  max-width: 240px;
  flex: 1 1 160px;
  text-align: center;
  transition: transform 0.14s, box-shadow 0.14s;
  border-top: 4px solid var(--primary);
}
.why-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(93,63,211,0.13);
  border-top: 4px solid var(--accent);
}
.why-icon {
  font-size: 2.1em;
  margin-bottom: 0.3em;
  display: block;
}
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 2.5rem 0 1.3rem 0;
  margin-top: 2.5rem;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 -2px 16px rgba(35,41,70,0.09);
  position: relative;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
.footer-logo {
  display: inline-block;
  vertical-align: middle;
  height: 36px;
  width: 36px;
  background: #fff2;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(93,63,211,0.08);
}
.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.footer-divider {
  height: 2px;
  width: 60px;
  margin: 0 auto 1.3rem auto;
  background: linear-gradient(90deg,#fff 0%,#5D3FD3 100%);
  border-radius: 2px;
  opacity: 0.26;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer-bottom small {
  color: #eee;
  font-size: 1.03rem;
}
.footer-bottom a {
  color: #FF8C42;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-social {
  margin-top: 0.3rem;
}
.footer-social a {
  display: inline-block;
  margin: 0 0.2rem;
  opacity: 0.85;
  transition: opacity 0.13s;
}
.footer-social a:hover {
  opacity: 1;
}
@media (max-width: 900px) {
  .insights-grid, .why-grid, .entertainment-cards {
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
  }
  main {
    padding: 1.2rem 0.1rem 1rem 0.1rem;
  }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-desc { font-size: 1.02rem; }
  .cta-btn { font-size: 1rem; }
  .featured-insights h2, .why-us h2 { font-size: 1.2rem; }
  .footer-brand { font-size: 1.01rem; }
  .footer-top { gap: 0.5rem; }
  .footer-divider { width: 35px; }
}
