@font-face {
    font-family: "Klavika_Basic";
    src: url("fonnts.com-Klavika_Basic_Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
      --yellow: #FFD000;
      --yellow-light: #FFE566;
      --yellow-dark: #C9A200;
      --red: #E3000B;
      --red-dark: #9E0008;
      --blue: #005FA3;
      --blue-light: #0080D6;
      --dark: #1C1C1C;
      --white: #FFFFFF;
      --off-white: #FFFBE6;
    }

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

    body {
      font-family: "Klavika_Basic";
      background: var(--yellow);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ========== STUDS ========== */
    .studs {
      height: 22px;
      display: flex;
      overflow: hidden;
      background: var(--yellow-dark);
    }
    .studs.red-studs { background: var(--red-dark); }
    .studs.blue-studs { background: var(--blue); }
    .stud {
      flex-shrink: 0;
      width: 36px; height: 22px;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    .studs .stud { background: radial-gradient(ellipse at 40% 30%, #FFE566, #C9A200); }
    .red-studs .stud { background: radial-gradient(ellipse at 40% 30%, #FF5555, #9E0008); }
    .blue-studs .stud { background: radial-gradient(ellipse at 40% 30%, #55AAFF, #003F6B); }

    /* ========== NAV ========== */
    nav {
      background: var(--red);
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-bottom: 6px solid var(--red-dark);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    }

    .nav-logo {
      font-family:"Klavika_Basic";
      font-size: 1.8rem;
      color: var(--yellow);
      text-shadow: 2px 2px 0 var(--red-dark);
      letter-spacing: 2px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 800;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-left: 20px;
      padding: 6px 14px;
      border-radius: 8px;
      border: 2.5px solid rgba(255,255,255,0.25);
      transition: all 0.18s;
    }
    .nav-links a:hover {
      background: var(--yellow);
      color: var(--red);
      border-color: var(--yellow);
      transform: translateY(-2px);
    }

    /* ========== HERO ========== */
    .hero {
      background: var(--yellow);
      padding: 72px 32px 56px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.06) 3px, transparent 3px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-block;
      background: var(--red);
      color: white;
      font-family:  "Klavika_Basic";
      font-size: 0.95rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 999px;
      border-bottom: 4px solid var(--red-dark);
      margin-bottom: 20px;
      box-shadow: 2px 3px 0 rgba(0,0,0,0.2);
      animation: popIn 0.5s cubic-bezier(.36,1.56,.64,1) both;
    }

    .hero h1 {
      font-family:  "Klavika_Basic";
      font-size: clamp(4rem, 12vw, 8rem);
      line-height: 0.95;
      color: var(--dark);
      text-shadow: 5px 5px 0 var(--yellow-dark), 7px 7px 0 rgba(0,0,0,0.12);
      letter-spacing: 3px;
      margin-bottom: 16px;
      animation: popIn 0.5s 0.1s cubic-bezier(.36,1.56,.64,1) both;
    }

    .hero h1 span {
      color: var(--red);
      text-shadow: 5px 5px 0 var(--red-dark), 7px 7px 0 rgba(0,0,0,0.12);
    }

    .hero-desc {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark);
      max-width: 520px;
      margin: 0 auto 32px;
      opacity: 0.85;
      animation: popIn 0.5s 0.2s cubic-bezier(.36,1.56,.64,1) both;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: popIn 0.5s 0.3s cubic-bezier(.36,1.56,.64,1) both;
    }

    .btn {
      display: inline-block;
      font-family: "Klavika_Basic";
      font-size: 1.2rem;
      letter-spacing: 1.5px;
      padding: 14px 36px;
      border-radius: 12px;
      text-decoration: none;
      position: relative;
      top: 0;
      transition: all 0.15s;
    }
    .btn-main {
      background: var(--red);
      color: white;
      border-bottom: 6px solid var(--red-dark);
      box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    }
    .btn-main:hover { top: 3px; border-bottom-width: 3px; background: #C50009; }

    .btn-sec {
      background: var(--dark);
      color: var(--yellow);
      border-bottom: 6px solid #000;
      box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    }
    .btn-sec:hover { top: 3px; border-bottom-width: 3px; }

    .brick-deco {
      position: absolute;
      font-size: 2.8rem;
      opacity: 0.18;
      pointer-events: none;
      animation: floatAround 5s ease-in-out infinite;
    }
    .bd1 { top: 12%; left: 5%; animation-delay: 0s; }
    .bd2 { top: 60%; left: 8%; animation-delay: 1s; font-size: 2rem; }
    .bd3 { top: 20%; right: 6%; animation-delay: 0.5s; }
    .bd4 { top: 70%; right: 4%; animation-delay: 1.5s; font-size: 2rem; }
    .bd5 { top: 40%; left: 2%; animation-delay: 2s; font-size: 1.6rem; }
    .bd6 { top: 35%; right: 2%; animation-delay: 2.5s; font-size: 1.8rem; }
    @keyframes floatAround {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-18px) rotate(12deg); }
    }

    /* ========== STATS ========== */
    .stats-section {
      background: var(--dark);
      padding: 48px 32px;
    }
    .stats-grid {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto;
    }
    .stat-card {
      background: var(--yellow);
      border-radius: 16px;
      padding: 24px 40px;
      text-align: center;
      border-bottom: 7px solid var(--yellow-dark);
      box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
      min-width: 160px;
      transition: transform 0.2s;
      position: relative;
    }
    .stat-card::before {
      content: '';
      position: absolute;
      top: -13px; left: 50%;
      transform: translateX(-50%);
      width: 60px; height: 13px;
      background: radial-gradient(ellipse at 40% 30%, #FFE566, #C9A200);
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    .stat-card:hover { transform: translateY(-6px) rotate(-1.5deg); }
    .stat-num {
      font-family:  "Klavika_Basic";
      font-size: 2.6rem;
      color: var(--red);
      text-shadow: 2px 2px 0 var(--red-dark);
    }
    .stat-lbl {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--dark);
      margin-top: 2px;
    }

    /* ========== ABOUT ========== */
    .about-section {
      background: var(--off-white);
      padding: 72px 32px;
    }
    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    @media(max-width: 700px) { .about-inner { grid-template-columns: 1fr; } }

    .section-label {
      display: inline-block;
      background: var(--yellow);
      color: var(--dark);
      font-family:  "Klavika_Basic";
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 999px;
      border-bottom: 3px solid var(--yellow-dark);
      margin-bottom: 14px;
    }
    .section-heading {
      font-family:  "Klavika_Basic";
      font-size: 2.6rem;
      color: var(--dark);
      margin-bottom: 18px;
      line-height: 1.1;
    }
    .section-heading span { color: var(--red); }

    .about-text p {
      font-size: 1.05rem;
      line-height: 1.75;
      font-weight: 600;
      color: #333;
      margin-bottom: 14px;
    }

    .about-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .mini-brick {
      border-radius: 14px;
      padding: 24px 16px;
      text-align: center;
      border-bottom: 5px solid rgba(0,0,0,0.15);
      font-size: 2.2rem;
      font-weight: 900;
      position: relative;
      box-shadow: 3px 3px 0 rgba(0,0,0,0.12);
      transition: transform 0.2s;
    }
    .mini-brick:hover { transform: scale(1.06) rotate(-2deg); }
    .mini-brick::before {
      content: '';
      position: absolute;
      top: -10px; left: 50%;
      transform: translateX(-50%);
      width: 40px; height: 10px;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    .mb-yellow { background: var(--yellow); border-color: var(--yellow-dark); }
    .mb-yellow::before { background: radial-gradient(ellipse at 40% 30%, #FFE566, #C9A200); }
    .mb-red { background: var(--red); border-color: var(--red-dark); color: white; }
    .mb-red::before { background: radial-gradient(ellipse at 40% 30%, #FF5555, #9E0008); }
    .mb-blue { background: var(--blue-light); border-color: var(--blue); color: white; }
    .mb-blue::before { background: radial-gradient(ellipse at 40% 30%, #55AAFF, #003F6B); }
    .mb-dark { background: var(--dark); border-color: #000; color: var(--yellow); }
    .mb-dark::before { background: radial-gradient(ellipse at 40% 30%, #444, #000); }
    .mini-brick-label {
      font-family:  "Klavika_Basic";
      font-size: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 6px;
      opacity: 0.85;
      display: block;
    }

    /* ========== VIDEOS ========== */
    .videos-section {
      background: var(--yellow);
      padding: 72px 32px;
      position: relative;
      overflow: hidden;
    }
    .videos-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.05) 3px, transparent 3px);
      background-size: 28px 28px;
    }
    .videos-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }
    .videos-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 22px;
    }

    .v-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      border-bottom: 6px solid #ddd;
      box-shadow: 4px 4px 0 rgba(0,0,0,0.15);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
      color: var(--dark);
      display: block;
    }
    .v-card:hover {
      transform: translateY(-8px) rotate(1deg);
      box-shadow: 6px 12px 0 rgba(0,0,0,0.18);
    }
    .v-thumb {
      height: 170px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .vt1 { background: linear-gradient(135deg, #FFD000 0%, #FF9500 100%); }
    .vt2 { background: linear-gradient(135deg, #E3000B 0%, #FF6B6B 100%); }
    .vt3 { background: linear-gradient(135deg, #005FA3 0%, #00B4D8 100%); }
    .vt4 { background: linear-gradient(135deg, #00A650 0%, #7FDB97 100%); }
    .vt5 { background: linear-gradient(135deg, #FFD000 0%, #E3000B 100%); }
    .vt6 { background: linear-gradient(135deg, #1C1C1C 0%, #555 100%); }

    .v-play {
      position: absolute;
      width: 50px; height: 50px;
      background: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      box-shadow: 0 4px 14px rgba(0,0,0,0.3);
      color: var(--red);
      transition: transform 0.2s;
    }
    .v-card:hover .v-play { transform: scale(1.2); }

    .v-info { padding: 16px 18px 18px; }
    .v-title {
      font-family:  "Klavika_Basic";
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 5px;
    }
    .v-meta {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #888;
    }

    /* ========== CTA ========== */
    .cta-section {
      background: var(--red);
      padding: 80px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.06) 3px, transparent 3px);
      background-size: 24px 24px;
    }
    .cta-box {
      position: relative;
      max-width: 560px;
      margin: 0 auto;
    }
    .cta-box h2 {
      font-family:  "Klavika_Basic";
      font-size: clamp(2.2rem, 6vw, 3.6rem);
      color: var(--yellow);
      text-shadow: 3px 3px 0 var(--red-dark);
      margin-bottom: 16px;
    }
    .cta-box p {
      font-size: 1.15rem;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      margin-bottom: 36px;
      line-height: 1.6;
    }

    .btn-cta {
      display: inline-block;
      background: var(--yellow);
      color: var(--red);
      font-family: "Klavika_Basic";
      font-size: 1.4rem;
      letter-spacing: 2px;
      padding: 16px 48px;
      border-radius: 14px;
      text-decoration: none;
      border-bottom: 7px solid var(--yellow-dark);
      box-shadow: 4px 4px 0 rgba(0,0,0,0.25);
      position: relative;
      top: 0;
      transition: all 0.15s;
    }
    .btn-cta:hover { top: 4px; border-bottom-width: 3px; }

    /* ========== FOOTER ========== */
    footer {
      background: var(--dark);
      padding: 16px 14px;
      text-align: center;
      border-top: 5px solid var(--yellow);
    }
    .footer-logo {
      font-family:  "Klavika_Basic";
      font-size: 2rem;
      color: var(--yellow);
      text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
      margin-bottom: 10px;
    }
    footer p {
      color: #888;
      font-weight: 700;
      font-size: 0.9rem;
    }
    footer span { color: var(--yellow); }

    @keyframes popIn {
      from { opacity: 0; transform: scale(0.8) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    .aa{
      margin-left: 2vw;
    }