@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');
body {
    font-family: 'Poppins', sans-serif;
background: linear-gradient(
135deg,
#12395B,
#3A78B4,
#A6CAE6,
#EFF1EA,
#5F9E84,
#225C56,
#102B2D,
#FDBF4B,
#F18C35,
#DD5234,
#C92D2D
);
    min-height: 100vh;
    color: white;
}
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h1 {
    font-size: 80px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: -4px;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.hero p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
     letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 15px;
}
.event-badge {
    margin-top: 30px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.explore-btn {
    margin-top: 25px;
    padding: 14px 28px;
    background: white;
    color: #7928ca;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    transition: 0.3s;
}

.explore-btn:hover {
    transform: scale(1.08);
}
.events-section {
    min-height: 100vh;
    background: #0b0b0f;
    padding: 100px 8%;
    text-align: center;
font-family: 'Poppins', sans-serif;}

.section-tag {
    color: #ff4fd8;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 4px;
}

.events-section h2 {
    font-size: 65px;
    margin: 15px 0;
    font-weight: 900;
}

.section-subtitle {
    font-size: 18px;
    color: #aaaaaa;
}

.phase-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 35px 0;
}

.phase-btn {
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.phase-btn.active {
    background: linear-gradient(135deg, #ff2bd6, #7c3cff);
}

.events-grid {
    width: min(1100px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.event-card {
    min-height: 180px;
    padding: 25px;
    border-radius: 24px;
    text-align: left;

    background:
        linear-gradient(
            135deg,
            rgba(255, 43, 214, 0.20),
            rgba(0, 198, 255, 0.12)
        );

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.event-card span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ff4fd8;
}

.event-card h3 {
    margin: 20px 0 35px;
    font-size: 24px;
}

.event-card p {
    opacity: 0.75;
}

@media (max-width: 800px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}
.event-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 20, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.event-popup.show {
    display: flex;
}

.popup-box {
    width: 90%;
    max-width: 550px;
    padding: 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, #d946ef, #2563eb);
    color: white;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}
.interest-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.interest-buttons button {
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

#interestedBtn {
    background: white;
    color: #d946ef;
}

#notInterestedBtn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid white;
}

.interest-buttons button:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .hero {
        padding: 35px 18px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1;
    }

    .events-section {
        padding: 40px 15px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-card {
        width: 100%;
    }

    .event-popup {
        width: 92%;
        max-height: 85vh;
        overflow-y: auto;
        padding: 25px 18px;
    }

    .interest-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .interest-buttons button {
        width: 100%;
    }
}
@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  .events-container {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .event-card {
    width: 100%;
    max-width: 100%;
    min-height: 230px;
    margin: 18px 0;
    padding: 28px 24px;
    box-sizing: border-box;
  }

  .event-card h3 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 64px;
  }
}
/* ===== UNFILTERED 2026 PREMIUM UI UPGRADE ===== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* HERO TITLE */
.hero h1 {
    text-shadow:
        0 0 12px rgba(255,255,255,.35),
        0 0 35px rgba(255,0,128,.35);
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* SECTION TITLE */
.events-section h2 {
    letter-spacing: -3px;
    text-shadow: 0 0 30px rgba(255, 43, 214, .25);
}

/* PHASE BUTTONS */
.phase-btn {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.phase-btn:hover {
    transform: translateY(-3px);
}

.phase-btn.active {
    box-shadow:
        0 8px 30px rgba(255, 43, 214, .25),
        0 0 25px rgba(124, 60, 255, .18);
}

/* EVENT CARDS */

.event-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    min-height: 190px;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(255, 43, 214, .17),
            transparent 38%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(0, 198, 255, .12),
            transparent 42%
        ),
        rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.13);

    box-shadow:
        0 20px 50px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.08);

    backdrop-filter: blur(16px);

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;
}

/* animated top light */

.event-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #ff2bd6,
        #7c3cff,
        transparent
    );

    animation: cardLight 4s linear infinite;

    z-index: 2;
}

@keyframes cardLight {
    0% { left: -100%; }
    100% { left: 140%; }
}

/* decorative glow */

.event-card::after {
    content: "";
    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(124, 60, 255, .14);

    filter: blur(30px);

    z-index: -1;
}

/* DESKTOP HOVER */

@media (hover: hover) {

    .event-card:hover {
        transform: translateY(-8px) scale(1.015);

        border-color: rgba(255, 43, 214, .35);

        box-shadow:
            0 28px 70px rgba(0,0,0,.38),
            0 0 35px rgba(255,43,214,.08);
    }

}

/* DAY TEXT */

.event-card span {
    display: inline-block;

    padding: 6px 11px;

    border-radius: 999px;

    background: rgba(255,43,214,.09);

    border: 1px solid rgba(255,43,214,.16);

    font-size: 11px;

    letter-spacing: 2.5px;

    line-height: 1;

    margin-bottom: 18px;
}

/* EVENT NAME */

.event-card h3 {
    margin: 0 0 24px;

    font-size: clamp(22px, 2.2vw, 29px);

    line-height: 1.05;

    letter-spacing: -.8px;
}

/* VENUE */

.event-card p {
    margin: 0;

    opacity: .72;

    font-size: 15px;

    letter-spacing: .2px;
}

/* CARD PRESS EFFECT */

.event-card:active {
    transform: scale(.98);
}

/* POPUP */

.popup-box {
    box-shadow:
        0 30px 90px rgba(0,0,0,.55),
        0 0 50px rgba(124,60,255,.15);

    border: 1px solid rgba(255,255,255,.15);
}

/* ===== MOBILE PREMIUM LAYOUT ===== */

@media (max-width: 600px) {

    .hero {
        padding: 42px 20px 30px;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -2.5px;
    }

    .events-section {
        padding: 42px 16px 70px;
    }

    .events-section h2 {
        font-size: 47px;
        letter-spacing: -2.5px;
        line-height: .95;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 12px;
    }

    .phase-tabs {
        margin: 28px 0 34px;
        gap: 10px;
    }

    .phase-btn {
        padding: 11px 23px;
        font-size: 13px;
    }

    .events-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .event-card {
        width: 100%;
        max-width: 100%;

        min-height: 155px;

        margin: 0;

        padding: 22px 20px;

        border-radius: 22px;

        box-sizing: border-box;
    }

    .event-card span {
        margin-bottom: 15px;
        font-size: 10px;
    }

    .event-card h3 {
        margin-bottom: 18px;
        font-size: 23px;
    }

    .event-card p {
        font-size: 14px;
    }

    .event-popup {
        padding: 14px;
    }

    .popup-box {
        width: 100%;
        max-width: 390px;
        max-height: 85vh;

        padding: 28px 20px;

        box-sizing: border-box;
        overflow-y: auto;
    }
}
/* ==============================
   STUDENT LOGIN OVERLAY
============================== */

#studentLoginOverlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 153, 0.35), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.25), transparent 40%),
        #08080d;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

.student-login-box {
    width: 100%;
    max-width: 450px;

    padding: 45px 35px;

    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;

    text-align: center;

    box-shadow:
        0 0 50px rgba(255, 0, 153, 0.18),
        0 30px 80px rgba(0, 0, 0, 0.6);
}

.student-login-box h2 {
    margin: 0 0 12px;

    font-size: 32px;
    line-height: 1.15;

    color: white;
}

.student-login-box > p {
    margin-bottom: 28px;

    color: #aaa;
    font-size: 16px;
}

.student-login-box input {
    display: block;

    width: 100%;
    height: 58px;

    margin-bottom: 15px;
    padding: 0 18px;

    box-sizing: border-box;

    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.07);

    color: white;
    font-size: 16px;

    outline: none;

    transition: 0.25s;
}

.student-login-box input::placeholder {
    color: #888;
}

.student-login-box input:focus {
    border-color: #ff2bbd;

    box-shadow:
        0 0 0 3px rgba(255, 43, 189, 0.12),
        0 0 20px rgba(255, 43, 189, 0.15);
}

#studentLoginBtn {
    width: 100%;
    min-height: 58px;

    margin-top: 8px;

    border: none;
    border-radius: 15px;

    background: linear-gradient(135deg, #ff2bbd, #7b2cff);

    color: white;

    font-size: 17px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#studentLoginBtn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(255, 43, 189, 0.35);
}

#studentLoginBtn:active {
    transform: scale(0.98);
}

#loginMessage {
    min-height: 20px;

    margin: 15px 0 0;

    color: #ff5b9d;
    font-size: 14px;
}


/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 600px) {

    #studentLoginOverlay {
        padding: 18px;
    }

    .student-login-box {
        max-width: 100%;

        padding: 35px 22px;

        border-radius: 22px;
    }

    .student-login-box h2 {
        font-size: 26px;
    }

    .student-login-box > p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .student-login-box input {
        height: 55px;
        font-size: 16px;
    }

    #studentLoginBtn {
        min-height: 55px;
        font-size: 16px;
    }
}

/* LIVE STUDENT COUNTER */

#liveStudentCounter {
    width: fit-content;
    max-width: calc(100% - 30px);
    margin: 24px auto 10px;
    padding: 12px 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: rgba(15, 15, 22, 0.85);
    border: 1px solid rgba(255, 45, 190, 0.45);
    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;

    box-shadow: 0 0 25px rgba(255, 0, 180, 0.15);
    backdrop-filter: blur(12px);
}

#studentCount {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #ff2dbd, #7b2cff);
    border-radius: 50px;

    color: white;
    font-size: 18px;
    font-weight: 900;

    box-shadow: 0 0 18px rgba(255, 45, 189, 0.45);
}

@media (max-width: 600px) {
    #liveStudentCounter {
        margin: 18px auto 8px;
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 0.5px;
        gap: 8px;
    }

    #studentCount {
        min-width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
/* FIX STUDENT LOGIN OVERLAY */

#studentLoginOverlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 170, 0.35), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(123, 44, 255, 0.35), transparent 40%),
        rgba(5, 5, 12, 0.96);

    backdrop-filter: blur(20px);
}

.student-login-box {
    width: 100%;
    max-width: 430px;
    padding: 40px 28px;

    box-sizing: border-box;
    text-align: center;

    background: rgba(18, 18, 30, 0.92);
    border: 1px solid rgba(255, 45, 189, 0.4);
    border-radius: 28px;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}

.student-login-box h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.1;
}

.student-login-box > p {
    margin: 0 0 25px;
}

.student-login-box input {
    display: block;
    width: 100%;
    height: 54px;
    margin-bottom: 14px;
    padding: 0 18px;

    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;

    background: rgba(255,255,255,0.08);
    color: white;

    font-size: 16px;
    outline: none;
}

#studentLoginBtn {
    width: 100%;
    min-height: 54px;
    margin-top: 4px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(135deg, #ff2dbd, #7b2cff);
    color: white;

    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

#loginMessage {
    min-height: 20px;
    margin-top: 12px;
    font-size: 13px;
}

@media (max-width: 600px) {
    .student-login-box {
        padding: 32px 20px;
        border-radius: 22px;
    }

    .student-login-box h2 {
        font-size: 25px;
    }
}

/* PREMIUM LIVE STUDENT COUNTER */

#liveStudentCounter {
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 18px auto 10px;
    padding: 9px 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: rgba(10, 10, 18, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: center;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(255, 45, 189, 0.25);
}

#studentCount {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #ff2dbd, #7b2cff);
    border-radius: 50px;

    color: white;
    font-size: 17px;
    font-weight: 900;

    box-shadow: 0 0 18px rgba(255, 45, 189, 0.55);
}

@media (max-width: 600px) {
    #liveStudentCounter {
        margin: 14px auto 8px;
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.4px;
    }

    #studentCount {
        min-width: 30px;
        height: 30px;
        font-size: 15px;
    }
}
/* ===== GRAND WELCOME SPECIAL CARD ===== */

.event-card:first-child {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 45, 189, 0.28), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(0, 180, 255, 0.25), transparent 40%),
        linear-gradient(145deg, #17131f, #071522);
    border: 1px solid rgba(255,255,255,0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Spotlight effect */
.event-card:first-child::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 350px;

    top: -180px;
    left: 50%;

    transform: translateX(-50%) rotate(25deg);

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.22),
        transparent
    );

    filter: blur(20px);
    pointer-events: none;
}

/* Tagline */

.event-card:first-child::after {
    content: "YOUR FIRST CHAPTER STARTS HERE ✦";

    position: absolute;
    left: 30px;
    bottom: 22px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,0.75);

    opacity: 0;
    transform: translateY(15px);

    transition: 0.35s ease;
}

/* Hover */

.event-card:first-child:hover {
    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 20px 50px rgba(255,45,189,0.22),
        0 0 30px rgba(0,180,255,0.15);
}

.event-card:first-child:hover::after {
    opacity: 1;
    transform: translateY(0);
}
#studentCollege {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

#studentCollege:focus {
  border-color: #ff1493;
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.35);
}

#studentCollege option {
  background: #111124;
  color: white;
}

/* =====================================
   PREMIUM STUDENT QR CARD
===================================== */

#studentQrSection {
    width: min(92%, 480px);
    margin: 55px auto;
    padding: 28px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: linear-gradient(
        145deg,
        rgba(255, 20, 147, 0.20),
        rgba(130, 60, 255, 0.18),
        rgba(0, 210, 255, 0.12)
    );

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30),
        0 0 30px rgba(255, 20, 147, 0.18);

    backdrop-filter: blur(14px);
    box-sizing: border-box;
}

#studentQrSection h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 7vw, 38px);
    letter-spacing: 2px;
}

#studentQrSection > p {
    margin: 0 0 22px;
    line-height: 1.5;
    opacity: 0.85;
}

#studentQrCode {
    width: 260px;
    max-width: 85%;
    padding: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: white;
    border-radius: 22px;

    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.12),
        0 12px 35px rgba(0, 0, 0, 0.35);
}

#studentQrCode canvas,
#studentQrCode img {
    display: block;
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
}

#studentQrMessage {
    margin: 22px 0 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.student-score-card {
    width: min(90%, 420px);
    margin: 0 auto 28px;
    padding: 24px 20px;
    box-sizing: border-box;
    text-align: center;

    background: rgba(10, 8, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;

    box-shadow:
        0 0 20px rgba(255, 20, 147, 0.35),
        0 0 45px rgba(138, 43, 226, 0.25);

    backdrop-filter: blur(14px);
}

.score-label {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
}

.score-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.score-star {
    font-size: 32px;
}

#studentPoints {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}

.score-points-text {
    font-size: 14px;
    font-weight: 800;
    align-self: flex-end;
    margin-bottom: 6px;
}

.score-bottom {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);

    display: flex;
    justify-content: space-around;
    gap: 10px;

    font-size: 13px;
    letter-spacing: 1px;
}

.score-bottom strong {
    font-size: 18px;
}

@media (max-width: 500px) {
    .student-score-card {
        padding: 20px 14px;
    }

    #studentPoints {
        font-size: 44px;
    }

    .score-bottom {
        font-size: 11px;
    }
}
/* ===== EVENT PASS ===== */

.event-pass-card{
    max-width:420px;
    margin:40px auto;
    padding:25px;
    border-radius:25px;
    background:linear-gradient(135deg,#7b2ff7,#3a8dff);
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
    backdrop-filter:blur(12px);
    text-align:center;
}

.pass-header h2{
    margin:0;
    font-size:30px;
    font-weight:800;
    letter-spacing:1px;
}

.pass-header span{
    display:inline-block;
    margin-top:6px;
    padding:5px 14px;
    border-radius:30px;
    background:rgba(255,255,255,.2);
    font-size:12px;
    letter-spacing:2px;
}

.event-pass-info{
    margin-top:20px;
}

.event-pass-info h3{
    font-size:24px;
    margin-bottom:18px;
}

.event-pass-info p{
    margin:10px 0;
    font-size:17px;
}

#studentQrCode{
    margin:25px auto;
}
.pass-stats{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin:22px 0;
}

.stat-box{
    flex:1;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:14px;
    padding:12px 8px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.stat-box strong{
    display:block;
    font-size:22px;
    font-weight:700;
    color:#fff;
}

.stat-box span{
    display:block;
    margin-top:5px;
    font-size:12px;
    color:#e9e9e9;
}
#top3Winners {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.winner-card {
    flex: 1;
    min-width: 180px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    color: white;
    font-weight: bold;
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.winner-card h3 {
    margin-bottom: 10px;
}

.winner-card p {
    margin: 5px 0;
}
