
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: #8a2be2; /* Blue Violet */
      --secondary: #ff6347; /* Tomato */
      --dark: #1a1a2e;
      --light: #f4f4f4;
      --text-dark: #333;
      --text-light: #eee;
      --border: rgba(255, 255, 255, 0.1);
      --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #302b63 100%);
      --gradient-accent: linear-gradient(135deg, #8a2be2 0%, #4a148c 100%);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Raleway', sans-serif; background: var(--light); color: var(--text-dark); overflow-x: hidden; }

    /* Utilities */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .text-center { text-align: center; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-8 { margin-bottom: 2rem; }
    .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    .py-24 { padding-top: 6rem; padding-bottom: 6rem; }

    /* NAV */
    nav {
      background: var(--dark);
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--light);
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    .nav-links {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
    }
    .nav-links a {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a:hover::after { width: 100%; }

    /* HERO */
    .hero {
      background: var(--gradient-dark);
      color: var(--text-light);
      padding: 8rem 1.5rem;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.pexels.com/photos/3973957/pexels-photo-3973957.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
      opacity: 0.2;
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 8vw, 6rem);
      margin-bottom: 1.5rem;
      line-height: 1.1;
      font-weight: 700;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero p {
      font-size: 1.3rem;
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
    }
    .hero .cta-button {
      display: inline-block;
      background: var(--gradient-accent);
      color: var(--light);
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    }
    .hero .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(138, 43, 226, 0.6);
    }

    /* SECTION STYLES */
    section { padding: 6rem 0; }
    section:nth-of-type(even) { background: #e0e0e0; }
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .section-description {
      font-size: 1.1rem;
      color: var(--text-dark);
      max-width: 700px;
      margin: 0 auto 3rem;
      text-align: center;
      line-height: 1.7;
    }

    /* DANCE STYLES */
    .dance-styles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .dance-card {
      background: var(--light);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .dance-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    .dance-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .dance-card:hover img { transform: scale(1.05); }
    .dance-card-content {
      padding: 2rem;
    }
    .dance-card h3 {
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
      color: var(--dark);
    }
    .dance-card p {
		  font-size: 1rem;
		  line-height: 1.6;
		  color: var(--text-dark);
		}
		.dance-detail-section {
		  margin-top: 1.5rem;
		  padding-top: 1.5rem;
		  border-top: 1px solid var(--border);
		}
		.dance-detail-section h4 {
		  font-family: 'Playfair Display', serif;
		  font-size: 1.4rem;
		  color: var(--primary);
		  margin-bottom: 0.8rem;
		}
		.dance-detail-section img {
		  width: 100%;
		  height: auto;
		  border-radius: 8px;
		  margin-top: 1rem;
		  margin-bottom: 1rem;
		  object-fit: cover;
		}
		.video-container {
		  position: relative;
		  width: 100%;
		  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
		  height: 0;
		  margin-top: 1rem;
		  border-radius: 8px;
		  overflow: hidden;
		}
		.video-container iframe {
		  position: absolute;
		  top: 0;
		  left: 0;
		  width: 100%;
		  height: 100%;
		  border: 0;
		}

    /* HISTORICAL CONTEXT & CULTURAL SIGNIFICANCE */
    .history-grid, .cultural-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }
    .content-block {
      padding: 2rem;
      background: var(--light);
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    .content-block p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }
    .image-block img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    /* CTA SECTION */
    .cta-section {
      background: var(--gradient-accent);
      color: var(--text-light);
      text-align: center;
      padding: 5rem 1.5rem;
    }
    .cta-section h2 {
      color: var(--light);
      margin-bottom: 1.5rem;
    }
    .cta-section p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2.5rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
    }
    .cta-section .cta-button {
      display: inline-block;
      background: var(--light);
      color: var(--primary);
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    .cta-section .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.6);
      padding: 3rem 1.5rem;
      text-align: center;
      font-size: 0.9rem;
      border-top: 1px solid var(--border);
    }
    footer .logo {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--light);
    }
    footer .footer-links {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    footer .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    footer .footer-links a:hover { color: var(--primary); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hero { padding: 6rem 1rem; }
      .hero h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
      .hero p { font-size: 1rem; }
      h2 { font-size: clamp(2rem, 7vw, 3rem); }
      h3 { font-size: 1.5rem; }
      .history-grid, .cultural-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .cultural-grid .content-block { order: 1; } /* For mobile, text first then image */
      .cultural-grid .image-block { order: 2; }
      section { padding: 4rem 0; }
    }
    @media (max-width: 600px) {
      .logo { font-size: 1.5rem; }
      .container { padding: 0 1rem; }
      .dance-card-content { padding: 1.5rem; }
    }

    /* Scroll Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
