/* =========================
   GLOBAL STYLES
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body{

    background:
    radial-gradient(circle at 10% 10%,rgba(37,99,235,.18),transparent 35%),
    radial-gradient(circle at 90% 20%,rgba(96,165,250,.12),transparent 35%),
    radial-gradient(circle at 50% 100%,rgba(37,99,235,.10),transparent 45%),

    linear-gradient(180deg,#070b18,#0b1230);

    color:var(--text)!important;

    overflow-x:hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0d1020;
}

::-webkit-scrollbar-thumb {

    background: linear-gradient(180deg,
            var(--blue),
            var(--purple),
            var(--magenta));

    border-radius: 20px;

}

/* =========================
   GLOBAL PARTICLES
========================= */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

#teamcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {

    position: fixed !important;

    top: 18px;

    left: 50%;

    transform: translateX(-50%);

    width: 92%;

    max-width: 1220px;

    padding: 12px 50px;

    border-radius: 20px;

    background: rgba(13, 16, 33, .72);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(120, 75, 255, .22);

    box-shadow:

        0 10px 45px rgba(0, 0, 0, .45),

        0 0 35px rgba(123, 74, 255, .12);

    transition: .35s;

    z-index: 9999;

}

.navbar:hover {

    border-color: rgba(255, 94, 167, .35);

    box-shadow:

        0 14px 50px rgba(0, 0, 0, .55),

        0 0 40px rgba(255, 94, 167, .16);

}

.navbar {
    box-shadow:
        0 10px 45px rgba(0, 0, 0, .45),
        0 0 35px rgba(37, 99, 235, .18);
}

.navbar:hover {
    box-shadow:
        0 14px 50px rgba(0, 0, 0, .55),
        0 0 40px rgba(37, 99, 235, .28);
}

.navbar .container {

    padding: 0;

}

.logo {

    gap: 16px !important;

}

.logo img {

    transition: .35s;

}

.digi-logo {

    height: 42px;

    filter: drop-shadow(0 0 14px rgba(77, 109, 255, .45));

}

.schl-logo {

    height: 46px;

    filter: drop-shadow(0 0 18px rgba(255, 94, 167, .35));

}

.logo img:hover {

    transform: translateY(-2px) scale(1.05);

}

.navbar-nav {

    gap: 10px;

}

.navbar-nav .nav-link {

    color: #f5f5ff !important;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: .5px;

    border-radius: 10px;

    padding: 10px 18px !important;

    transition: .35s;

}

.navbar-nav .nav-link:hover {

    color: #fff !important;

    background: linear-gradient(90deg,
            rgba(77, 109, 255, .18),
            rgba(123, 58, 255, .22),
            rgba(255, 94, 167, .18));

    text-shadow: 0 0 10px rgba(255, 94, 167, .35);

}

.navbar-toggler {

    border: 1px solid rgba(140, 90, 255, .4) !important;

}

.navbar-toggler:focus {

    box-shadow: none !important;

}

.navbar-toggler-icon {

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");

}

/* =========================
   HERO SECTION
========================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #1d5fb0 url("bg.png") center center/cover no-repeat fixed;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(4, 33, 76, 0.156), rgba(68, 94, 133, 0.154));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px cyan);
}

.hero-title {
    font-size: 64px;
    letter-spacing: 6px;
    text-shadow: 0 0 10px cyan, 0 0 30px cyan;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    color: #c6f8ff;
}

.hero-top {
    font-size: 18px;
    margin-bottom: 10px;
    color: #c6f8ff;
}

/* =========================
   AURORA CANVAS
========================= */
#auroraCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* =========================
   TRIBUTE SECTION
========================= */
.tribute {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8%;
}

.tribute-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 60px;
    border-radius: 20px;
    background: #0a1a3a;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
    min-height: 60vh;
}

.tribute-text h2 {
    font-size: 42px;
    color: #00ffff;
    margin-bottom: 20px;
}

.tribute-text h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #bdefff;
}

.tribute-text p {
    font-size: 18px;
    line-height: 1.8;
}

.tribute-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== MODERN ROTATING GRADIENT AURA ===== */
.tribute-image::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(0, 255, 255, 0.3), rgba(0, 128, 255, 0.2), rgba(0, 255, 255, 0.3));
    filter: blur(30px);
    z-index: 0;
    animation: rotateAura 8s linear infinite;
}

@keyframes rotateAura {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tribute-image img {
    position: relative;
    width: 280px;
    border-radius: 12px;
    padding: 12px;
    background: #1a1133;
    z-index: 2;
    border: 2px solid rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.35);
    transition: 0.5s transform, 0.5s box-shadow;
}

.tribute-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.6);
}

/* =========================
   CHAMPIONS SECTION
========================= */
.champions-section {
    padding: 100px 10%;
    text-align: center;
}

.memorial-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.champions-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.champions-row img,
.guests-row img,
.moments-row img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: 0.35s;
    cursor: pointer;
    z-index: 1;
}

/* =========================
   TECH CHAMPIONS GALLERY
========================= */
.tech-row img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: 0.35s;
    cursor: pointer;
    z-index: 1;
}

.tech-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px cyan, 0 0 45px rgba(0, 255, 255, 0.6);
}

/* Active centered image (no zoom) */
.tech-lightbox-active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 520px;
    z-index: 1000;
    border-radius: 16px;
    box-shadow: 0 0 60px cyan, 0 0 100px rgba(0, 255, 255, 0.7);
    transition: 0.5s all;
    background: #031c3b;
}

/* Other images hidden */
.tech-lightbox-inactive {
    opacity: 0;
    pointer-events: none;
}

/* Navigation buttons */
#techPrevBtn,
#techNextBtn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: cyan;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1010;
    display: none;
}

#techPrevBtn {
    left: 30px;
}

#techNextBtn {
    right: 30px;
}

/* Close button */
#techCloseBtn {
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: cyan;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1010;
    display: none;
}

#techPrevBtn:hover,
#techNextBtn:hover,
#techCloseBtn:hover {
    background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
    .tech-lightbox-active {
        width: 300px;
        height: 360px;
    }

    #techPrevBtn,
    #techNextBtn {
        font-size: 1.5rem;
        padding: 10px 14px;
    }

    #techCloseBtn {
        font-size: 1.5rem;
        padding: 6px 10px;
    }
}

/* =========================
   ELECTRIC NEON FLOWING BORDER
========================= */
.neon-border {
    position: relative;
    padding: 3px;
    border-radius: 14px;
    display: inline-block;
    background: linear-gradient(90deg, #00ffff, #0088ff, #00ffff, #0044ff, #00ffff);
    background-size: 400%;
    animation: neonFlow 6s linear infinite;
}

.neon-border img {
    width: 230px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@keyframes neonFlow {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}

.neon-border::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: inherit;
    border-radius: 14px;
    filter: blur(12px);
    opacity: 0.7;
    z-index: -1;
}

/* =========================
   GALLERY STYLE (Champions, Guests, Moments)
========================= */
.champions-row img,
.guests-row img,
.moments-row img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: 0.35s;
    cursor: pointer;
    z-index: 1;
}

/* Active zoomed image */
.lightbox-active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 520px;
    z-index: 1000;
    border-radius: 16px;
    box-shadow: 0 0 60px cyan, 0 0 100px rgba(0, 255, 255, 0.7);
    transition: 0.5s all;
    background: #031c3b;
}

/* Other images hidden */
.lightbox-inactive {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Navigation buttons */
.gallery-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: cyan;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1010;
    display: none;
}

#prevBtn {
    left: 30px;
}

#nextBtn {
    right: 30px;
}

/* Close button */
#closeBtn {
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: cyan;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1010;
    display: none;
}

.gallery-nav:hover,
#closeBtn:hover {
    background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
    .lightbox-active {
        width: 300px;
        height: 360px;
    }

    .gallery-nav {
        font-size: 1.5rem;
        padding: 10px 14px;
    }

    #closeBtn {
        font-size: 1.5rem;
        padding: 6px 10px;
    }
}

/* =========================
   PARALLAX SECTION
========================= */
.parallax-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('images/background_dark.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.parallax-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.35);
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.parallax-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px cyan;
}

.parallax-content p {
    font-size: 20px;
    color: #c6f8ff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
    .parallax-content h2 {
        font-size: 32px;
    }

    .parallax-content p {
        font-size: 16px;
    }

    .parallax-content {
        padding: 20px 30px;
    }
}

/* =========================
   GENERAL INSTRUCTIONS SECTION
========================= */
.instructions-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.instructions-container {
    width: 500px;
    padding: 60px;
    border-radius: 20px;
    background: #0a1a3a;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
    min-height: 30vh;
    text-align: center;
}

.instructions-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.instructions-container p {
    font-size: 18px;
    margin-bottom: 35px;
}

.instructions-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    background: #0057a9;
    color: white;
    transition: 0.3s;
}

.instructions-btn:hover {
    background: #00376a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.453);
}

/* =========================
   TEAM SECTION
========================= */
.team-section {
    padding: 120px 10%;
    text-align: center;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    justify-items: center;
    margin-top: 60px;
}

/* TEAM CARD */
.team-card {
    position: relative;
    width: 300px;
    height: 360px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1A1F36, #232946);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(37, 99, 235, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.35s;
}

/* Responsive name fallback */
.team-name {
    display: none;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    z-index: 5;
    padding: 0 10px;
}

.team-card.show {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 35px rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
}

    .team-card.show:hover {
        transform: translateY(-5px);
    }

    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .team-card:hover {
            transform: none;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(37, 99, 235, 0.15);
        }

        .team-card.show:hover {
            transform: translateY(0);
        }
    }

.team-card img {
    width: 93%;
    height: 290px;
    margin-top: 20px;
    object-fit: cover;
    border-radius: 10px;
}

/* SVG BORDER */
.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.border-text {
    fill: #ffffff;
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

/* =========================
   MOVING BORDER NAME
========================= */
.nameMove1 {
    animation: moveBorder 10s linear infinite;
}

.nameMove2 {
    animation: moveBorder 10s linear infinite;
}

@keyframes moveBorder {
    0% {
        startOffset: 0%;
    }
    100% {
        startOffset: 100%;
    }
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 120px 10%;
    text-align: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: 0.4s;
    cursor: pointer;
}

.testimonial-img:hover {
    transform: scale(1.05);
    border-color: cyan;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

/* =========================
   CONTACT SECTION (PREMIUM BLUE)
========================= */

.contact-section{
    padding:120px 8%;
    position:relative;
}

/* BOX */
.contact-box{
    background:rgba(17,20,45,.78);
    backdrop-filter:blur(18px);

    border:1px solid rgba(37,99,235,.25);
    border-radius:24px;

    box-shadow:0 30px 90px rgba(0,0,0,.5);

    padding:40px;
}

/* TITLE */
.contact-box h2{
    font-size:42px;
    font-weight:900;
    color:#60a5fa;
    letter-spacing:2px;
}

/* divider */
.section-divider{
    border:0;
    height:1px;
    background:linear-gradient(90deg,transparent,#2563eb,transparent);
    margin:20px 0 40px;
}

/* CONTACT TEXT */
.contact-info p{
    color:#cbdcff;
    margin-bottom:18px;
    font-size:15px;
}

.contact-info strong{
    color:#ffffff;
}

/* ICONS */
.contact-info i{
    font-size:22px;
    color:#60a5fa;
    margin-bottom:6px;
}

/* LINKS */
.contact-info a{
    color:#93c5fd;
    text-decoration:none;
}

.contact-info a:hover{
    color:#ffffff;
}
/* =========================
   ULTRA SMOOTH OCEAN FOOTER
========================= */

.wave-footer{
    position:relative;
    width:100%;
    height:100px;
    /* overflow:hidden; */

    /* background:linear-gradient(180deg,#050712,#0a1024); */
    /* border-top:1px solid rgba(96,165,250,.25); */
}

/* TEXT */
.wave-footer .footer-content{
    position:relative;
    z-index:5;
    text-align:center;
    color:#cbdcff;
    font-size:14px;

    padding-top:50px;
}

/* WAVES WRAPPER */
.waves{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:140px;
    overflow:hidden;
}

/* SVG scaling */
.waves svg{
    position:absolute;
    bottom:0;
    width:200%;
    height:100%;
}

/* BASE WAVE STYLE */
.wave{
    fill:rgba(59,130,246,0.35);
    transform-origin:center;
}

/* SMOOTHER LAYERS (REAL FEEL) */
.wave1{
    animation:waveMove1 10s ease-in-out infinite;
    opacity:0.45;
}

.wave2{
    animation:waveMove2 14s ease-in-out infinite;
    opacity:0.3;
    fill:rgba(37,99,235,0.35);
}

.wave3{
    animation:waveMove3 18s ease-in-out infinite;
    opacity:0.18;
    fill:rgba(96,165,250,0.35);
}

/* SMOOTH FLOAT + DRIFT */
@keyframes waveMove1{
    0%{
        transform:translateX(0) translateY(0);
    }
    50%{
        transform:translateX(-25%) translateY(-6px);
    }
    100%{
        transform:translateX(-50%) translateY(0);
    }
}

@keyframes waveMove2{
    0%{
        transform:translateX(0) translateY(0);
    }
    50%{
        transform:translateX(-18%) translateY(-4px);
    }
    100%{
        transform:translateX(-35%) translateY(0);
    }
}

@keyframes waveMove3{
    0%{
        transform:translateX(0) translateY(0);
    }
    50%{
        transform:translateX(-12%) translateY(-3px);
    }
    100%{
        transform:translateX(-25%) translateY(0);
    }
}

/* SOFT WATER GLOW */
.wave-footer::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:140px;
    background:radial-gradient(circle at 50% 20%, rgba(96,165,250,0.18), transparent 70%);
    z-index:2;
}

/* MOBILE */
@media(max-width:768px){
    .wave-footer{
        height:140px;
    }

    .wave-footer .footer-content{
        font-size:12px;
        padding-top:80px;
    }
}
/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* =========================
   LARGE TABLETS
========================= */
@media (max-width: 992px) {
    .navbar {
        width: 95%;
        padding: 10px 15px;
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: 4px;
    }

    .hero-logo {
        width: 120px;
    }

    .tribute-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }

    .tribute-image::before {
        width: 320px;
        height: 320px;
    }

    .champions-section,
    .testimonials-section,
    .team-section {
        padding: 80px 6%;
    }

    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .parallax-content {
        width: 90%;
    }
}

/* =========================
   MOBILE DEVICES
========================= */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
        top: 10px;
        width: 94%;
        border-radius: 14px;
        padding: 10px 14px;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        gap: 8px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        text-align: center;
        font-size: 1rem;
    }

    .logo img {
        height: 34px !important;
    }

    /* HERO */
    .hero {
        padding: 120px 20px 60px;
        min-height: 100vh;
    }

    .hero-logo {
        width: 95px;
        margin-bottom: 15px;
    }

    .hero-top {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* TRIBUTE */
    .tribute {
        padding: 80px 20px;
        min-height: auto;
    }

    .tribute-container {
        padding: 30px 20px;
        gap: 30px;
    }

    .tribute-text h2 {
        font-size: 30px;
    }

    .tribute-text h4 {
        font-size: 17px;
    }

    .tribute-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .tribute-image::before {
        width: 240px;
        height: 240px;
    }

    .tribute-image img {
        width: 190px;
    }

    /* CHAMPIONS + GALLERY */
    .champions-section {
        padding: 70px 20px;
    }

    .memorial-title {
        font-size: 2rem;
    }

    .champions-row {
        gap: 20px;
    }

    .champions-row img,
    .guests-row img,
    .moments-row img,
    .tech-row img,
    .neon-border img {
        width: 150px;
        height: 190px;
    }

    /* PARALLAX */
    .parallax-section {
        height: auto;
        padding: 80px 20px;
        background-attachment: scroll;
    }

    .parallax-content {
        width: 100%;
        padding: 25px 20px;
    }

    .parallax-content h2 {
        font-size: 30px;
    }

    .parallax-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    /* INSTRUCTIONS */
    .instructions-section {
        height: auto;
        height: 84vh;
        padding: 80px 20px;
    }

    .instructions-container {
        width: 100%;
        padding: 40px 25px;
        min-height: auto;
    }

    .instructions-container h2 {
        font-size: 30px;
    }

    .instructions-btn {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* TEAM */
    .team-section {
        padding: 80px 20px;
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .team-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding: 15px;
        margin: 0 auto;
    }

    .team-card img {
        height: 240px;
        margin-top: 10px;
    }

    .border-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    /* Show HTML name, hide SVG border text on mobile */
    .team-name {
        display: block;
    }

    .border-svg {
        display: none;
    }

    /* TESTIMONIALS */
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* CONTACT */
    .contact-section {
        padding: 50px 15px;
        position: relative;
        z-index: 1;
    }

    .contact-box {
        padding: 25px 20px;
        background: rgba(17, 20, 45, 0.9);
        border-radius: 20px;
        max-width: 960px;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
        border: 1px solid rgba(37, 99, 235, 0.3);
    }

    .contact-box h2 {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .text-cyan {
        color: #60a5fa;
    }

    iframe {
        height: 220px !important;
    }

    .section-divider {
        border: 0;
        border-top: 1px solid rgba(37, 99, 235, 0.4);
        width: 80px;
        margin: 0 auto 25px;
    }

    /* FOOTER */
    .contact-info i {
        font-size: 1.3rem;
        color: #60a5fa;
        margin-bottom: 4px;
    }

    footer {
        height: auto;
        min-height: 100px;
    }

    .contact-info a {
        color: #93c5fd;
        text-decoration: none;
    }

    footer .wave p {
        margin-top: 35px;
        font-size: 12px;
        padding: 0 10px;
    }

    .contact-info a:hover {
        color: #ffffff;
    }

    .contact-info .bi {
        font-size: 1.1rem;
    }
}

/* =========================
   SMALL MOBILE DEVICES
========================= */
@media (max-width: 480px) {
    .contact-box {
        padding: 20px 15px;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    iframe {
        height: 240px;
    }

    .hero-title {
        font-size: 32px;
    }

    /* footer */
    footer {
        position: relative;
        width: 100%;
        height: 100px;
    }

    .hero-top {
        font-size: 13px;
    }

    footer .wave {
        background: url(../images/Webp.net-resizeimage.png);
        width: 100%;
        height: 100px;
        background-size: 1000px 100px;
        position: absolute;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    footer .wave p {
        margin-top: 30px;
        color: #fff;
    }

    .tribute-text h2 {
        font-size: 26px;
    }

    footer .wave.wave1 {
        animation: animate-wave1 10s linear infinite;
        z-index: 108;
        opacity: 1;
        animation-delay: 0s;
        bottom: 0;
    }

    .tribute-text h4 {
        font-size: 15px;
    }

    @keyframes animate-wave1 {
        0% {
            background-position-x: 0;
        }
        100% {
            background-position-x: 1000px;
        }
    }

    .tribute-text p {
        font-size: 14px;
    }

    footer .wave.wave2 {
        animation: animate-wave2 15s linear infinite;
        z-index: 107;
        opacity: 0.5;
        animation-delay: -5s;
        bottom: 10px;
    }

    .champions-row img,
    .guests-row img,
    .moments-row img,
    .tech-row img,
    .neon-border img {
        width: 130px;
        height: 170px;
    }

    @keyframes animate-wave2 {
        0% {
            background-position-x: 0;
        }
        100% {
            background-position-x: -1000px;
        }
    }

    .instructions-container h2 {
        font-size: 26px;
    }

    footer .wave.wave3 {
        animation: animate-wave3 8s linear infinite;
        z-index: 106;
        opacity: 0.3;
        animation-delay: 3s;
        bottom: 5px;
    }

    .parallax-content h2 {
        font-size: 26px;
    }

    @keyframes animate-wave3 {
        0% {
            background-position-x: 0;
        }
        100% {
            background-position-x: 1000px;
        }
    }

    .memorial-title {
        font-size: 1.8rem;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .team-card {
        max-width: 280px;
        padding: 12px;
    }

    .team-card img {
        height: 220px;
        margin-top: 8px;
    }

    .team-name {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .border-text {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    footer .wave.wave4 {
        animation: animate-wave2 18s linear infinite;
        z-index: 105;
        opacity: 1;
        animation-delay: -3s;
        bottom: 5px;
    }

    @keyframes animate-wave4 {
        0% {
            background-position-x: 0;
        }
        100% {
            background-position-x: -1000px;
        }
    }

    .footer-content {
        overflow: hidden;
        color: #000;
    }
}

/* =========================
   EXTRA SMALL MOBILE DEVICES
========================= */
@media (max-width: 360px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-top {
        font-size: 12px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .tribute-text h2 {
        font-size: 22px;
    }

    .tribute-text h4 {
        font-size: 14px;
    }

    .tribute-text p {
        font-size: 13px;
    }

    .champions-row img,
    .guests-row img,
    .moments-row img,
    .tech-row img,
    .neon-border img {
        width: 110px;
        height: 140px;
    }

    .instructions-container h2 {
        font-size: 22px;
    }

    .parallax-content h2 {
        font-size: 22px;
    }

    .memorial-title {
        font-size: 1.5rem;
    }

    .team-card {
        max-width: 260px;
        padding: 10px;
    }

    .team-card img {
        height: 200px;
        margin-top: 5px;
    }

    .team-name {
        font-size: 12px;
        letter-spacing: 0.5px;
        bottom: 10px;
    }

    .border-text {
        font-size: 14px;
        letter-spacing: 1px;
    }
}
