/* style.css - Final Adjusted Version */

:root {
    /* --- BACKGROUNDS --- */
    --dark-bg: #02040a; 
    --card-bg: rgba(10, 25, 47, 0.85);
    --nav-bg: rgba(5, 10, 25, 0.9);
    
    /* --- THE PALETTE --- */
    --primary-blue: #3b82f6;      
    --contrast-orange: #f97316;   
    --bright-amber: #fbbf24;      
    
    /* --- GRADIENTS --- */
    --main-gradient: linear-gradient(135deg, var(--primary-blue), var(--contrast-orange));
    
    /* --- TEXT COLORS --- */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-highlight: #f97316;
    
    /* --- GLOWS --- */
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-depth: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08), transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.08), transparent 20%);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 45px; 
    
    /* INCREASED BASE FONT SIZE */
    font-size: 17px; 
}

/* Background Animation Canvas */
#bg-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; opacity: 0.5; pointer-events: none;
}

/* ===========================
   NAVBAR (Fixed Alignment)
   =========================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensures vertical centering */
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 10px 40px; /* Adjusted padding */
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 48px; 
}

nav.nav-zoomed {
    width: 95%; max-width: 1400px; padding: 15px 50px; top: 30px;
    background: rgba(5, 10, 25, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

nav:hover {
    width: 95%;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-container img { height: 45px; filter: drop-shadow(0 0 5px var(--primary-blue)); }
nav.nav-zoomed .logo-container img { transform: scale(1.15); }

.logo-text-group h3 {
    margin: 0; line-height: 1; font-size: 1.6rem; font-weight: 800;
    color: #fff; text-transform: uppercase; letter-spacing: 1px;
}
.logo-tagline {
    font-size: 0.7rem; color: var(--text-highlight);
    letter-spacing: 0.5px; font-weight: 600; text-transform: uppercase;
}

/* Nav Links Alignment */
.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 35px; 
    margin: 0 20px; 
    align-items: center; /* Crucial for aligning text with button */
}

.nav-links a {
    color: var(--text-muted); 
    text-decoration: none; 
    font-weight: 600;
    transition: 0.3s; 
    font-size: 1.05rem; /* Increased font size */
    text-transform: capitalize;
    line-height: 1; /* Reset line height for alignment */
}
.nav-links a:hover, .nav-links a.active { color: #ffffff; }

.hamburger { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; }
.hamburger:hover { color: var(--contrast-orange); }

/* ===========================
   BUTTONS
   =========================== */
.cta-btn {
    padding: 10px 32px; /* Adjusted padding for alignment */
    background: transparent;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--contrast-orange);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex; /* Helps center text inside button */
    align-items: center;
    justify-content: center;
}

.cta-btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--contrast-orange), var(--primary-blue));
    z-index: -1; transition: transform 0.3s ease;
    transform: scaleX(0); transform-origin: left;
}

.cta-btn:hover {
    border-color: transparent;
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
    transform: translateY(-2px);
    color: #fff;
}
.cta-btn:hover::before { transform: scaleX(1); }

/* ===========================
   HERO
   =========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 160px 20px 80px; }

.abhinav-title {
    font-size: 5.5rem; /* Large */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 10px 0 15px 0;
    line-height: 1;
    color: #ffffff; 
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    animation: titlePulse 3s ease-in-out infinite alternate;
}

@keyframes titlePulse {
    0% { transform: scale(1); text-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
    100% { transform: scale(1.02); text-shadow: 0 0 40px rgba(59, 130, 246, 0.8); }
}

.page-title {
    font-size: 2.2rem; color: #e2e8f0; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 600; margin-bottom: 30px; text-align: center;
}

.sanskrit-hero {
    font-size: 1.1rem; /* Reduced from 1.5rem */
    color: var(--bright-amber);
    margin-bottom: 25px; 
    font-weight: 700;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
    text-align: center; /* Ensures it stays centered */
    line-height: 1.8;   /* Adds a bit of space between the two lines */
}

.section-title {
    font-size: 3rem; text-align: center; margin-bottom: 60px;
    position: relative; color: #ffffff;
}
.section-title::after {
    content: ''; display: block; width: 80px; height: 4px;
    background: var(--main-gradient); margin: 15px auto; border-radius: 2px;
}

.hero-college-logo {
    height: 200px; margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
    transition: transform 0.5s;
}
.hero-college-logo:hover { transform: scale(1.05); }

/* Announcement Bar */
.announcement-bar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: #ffd54a; color: #000; font-weight: 600;
    overflow: hidden; z-index: 9999; text-align: center;
}
.announcement-text {
    display: inline-block; white-space: nowrap; padding: 10px 0; font-size: 1rem;
    animation: scrollText 18s linear infinite;
}
@keyframes scrollText { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

/* Countdown Timer */
.timer-box { display: flex; justify-content: center; gap: 25px; margin-top: 50px; flex-wrap: wrap; }
.time-unit {
    background: rgba(10, 25, 47, 0.9); padding: 25px;
    border-radius: 12px; min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}
.time-unit span { display: block; font-size: 3rem; font-weight: 800; color: var(--contrast-orange); }

/* Glass Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px); border-radius: 20px;
    padding: 40px; transition: all 0.4s ease;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-depth);
}
.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--main-gradient); transform: scaleX(0);
    transition: transform 0.4s ease; transform-origin: left;
}
.glass-card:hover::before { transform: scaleX(1); }

/* Justify Text */
.track-info p, .timeline-item p, .guideline-section p, .guideline-list li, .glass-card p {
    text-align: justify; text-justify: inter-word; font-size: 1.1rem;
}
.team-grid .glass-card p, .team-grid .glass-card h3 { text-align: center !important; }

/* ===========================
   PAGES
   =========================== */
/* Timeline */
.timeline { position: relative; max-width: 1000px; margin: 60px auto; }
.timeline::after {
    content: ''; position: absolute; width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--contrast-orange));
    top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 10px;
}
.timeline-item { padding: 20px 60px; position: relative; width: 50%; box-sizing: border-box; }
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-item .content {
    padding: 30px; background: var(--card-bg);
    border-radius: 15px; border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}
.timeline-item:hover .content { transform: scale(1.02); border-color: var(--contrast-orange); }
.timeline-item::after {
    content: ''; position: absolute; width: 18px; height: 18px;
    background: var(--dark-bg); border: 3px solid var(--bright-amber);
    border-radius: 50%; top: 35px; z-index: 2; transition: all 0.3s;
}
.timeline-item.left::after { right: -11px; }
.timeline-item.right::after { left: -11px; }
.timeline-item:hover::after { background: var(--contrast-orange); transform: scale(1.4); }
.timeline-item .date { font-size: 1.1rem; color: var(--contrast-orange); font-weight: bold; margin-bottom: 8px; }
.timeline-item h3 { font-size: 1.5rem; color: #fff; }

/* Tracks */
.track-container { display: flex; flex-direction: column; gap: 70px; padding: 20px 0; overflow-x: hidden; }
.track-box {
    display: flex; align-items: center; background: rgba(20, 30, 50, 0.6);
    border: 1px solid var(--glass-border); border-radius: 24px; padding: 0;
    backdrop-filter: blur(15px); overflow: hidden; transition: all 0.4s ease;
}
.track-box:hover { border-color: var(--contrast-orange); transform: translateY(-5px); }
.track-box:nth-child(even) { flex-direction: row-reverse; }
.track-img { width: 45%; height: 320px; object-fit: cover; }
.track-info { width: 55%; padding: 45px; }
.track-info h3 { font-size: 2rem; margin-bottom: 15px; color: #fff; }
.subtrack-list { margin-top: 15px; padding-left: 20px; color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

/* Plagiarism & Forms */
.plagiarism-card {
    background: #ffd54a; border: none; color: #000;
    padding: 30px 40px; border-radius: 20px;
    max-width: 500px; margin: 50px auto; text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.register-box-section { display: flex; justify-content: center; margin: 80px 0 120px; }
.register-box {
    position: relative;
    background: linear-gradient(145deg, rgba(15,25,45,0.95), rgba(5,10,25,0.95));
    border-radius: 24px; padding: 70px 80px;
    text-align: center; max-width: 650px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6); overflow: hidden;
}
.register-box::before {
    content: ""; position: absolute; inset: 0;
    border-radius: 24px; padding: 2px;
    background: linear-gradient(120deg, #3b82f6, #f97316, #3b82f6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 4s linear infinite; pointer-events: none;
}
@keyframes borderGlow { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }
.register-box h2 { font-size: 2.8rem; margin-bottom: 20px; color: #fff; }
.register-box p { font-size: 1.2rem; margin-bottom: 35px; color: #d0d4dc; line-height: 1.6; }

/* Team */
.team-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 50px; }
.profile-img {
    width: 200px; height: 200px; border-radius: 50%;
    background-color: #0f172a; margin: 0 auto 25px; object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); transition: all 0.3s ease;
}
.role { color: var(--contrast-orange); font-size: 1rem; text-transform: uppercase; font-weight: 600; }

/* Guidelines */
.guideline-flex { display: flex; align-items: center; gap: 40px; }
.guideline-img { width: 300px; height: 220px; object-fit: cover; border-radius: 12px; border: 1px solid var(--contrast-orange); }

/* Animation Classes */
.scroll-animate { opacity: 0; transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); filter: blur(5px); }
.from-left { transform: translateX(-80px); }
.from-right { transform: translateX(80px); }
.scroll-animate.show { opacity: 1; transform: translateX(0); filter: blur(0); }

/* ===========================
   FOOTER
=====================*/
footer {
    background-color: #000000;
    padding: 90px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

/* Brand Column */
.footer-col.brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-brand-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand-box img {
    height: 80px;
}

.brand-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

/* General Columns */
.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-col p,
.footer-link {
    color: #cccccc;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--contrast-orange);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* Follow Section */
.follow-section {
    margin-top: 25px;
}

.follow-section h4 {
    margin-bottom: 15px;
}

/* Map */
.map-container {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #666666;
}
/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    nav { width: 95%; padding: 12px 20px; }
    .nav-links {
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background: rgba(5, 10, 25, 0.95); backdrop-filter: blur(20px);
        border-radius: 20px; border: 1px solid var(--glass-border);
        flex-direction: column; align-items: center; gap: 20px; padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8); z-index: 999;
    }
    .nav-links.active { display: flex; animation: slideDown 0.3s ease forwards; }
    .nav-links a { width: 100%; text-align: center; font-size: 1.2rem; }
    .hamburger { display: block; }
    
    .container { padding-top: 140px; }
    .abhinav-title { font-size: 3rem; }
    .page-title { font-size: 1.5rem; }
    
    .track-box, .track-box:nth-child(even) { flex-direction: column; }
    .track-img { width: 100%; height: 220px; }
    .track-info { width: 100%; padding: 30px; }
    
    .footer-content { flex-direction: column; }
    .footer-col { text-align: left; }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item.left, .timeline-item.right { text-align: left; left: 0; }
    .timeline-item::after, .timeline-item.right::after { left: 21px; right: auto; }
    
    .guideline-flex, .guideline-flex[style*="row-reverse"] { flex-direction: column-reverse !important; }
    .guideline-img { width: 100%; height: 200px; }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }


/* ===========================
   FIX: HERO CENTERING
   =========================== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* ===========================
   REDESIGNED: PLAGIARISM POLICY
   =========================== */
.plagiarism-card {
    background: rgba(255, 213, 74, 0.05); /* Very subtle yellow tint */
    border: 1px solid rgba(255, 213, 74, 0.3); /* Themed yellow border */
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    max-width: 700px;
    margin: 50px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 213, 74, 0.1);
}

/* Add a glowing accent bar to the side */
.plagiarism-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ffd54a;
    box-shadow: 0 0 15px #ffd54a;
}

.plagiarism-card h2 {
    color: #ffd54a; /* Yellow only for the title */
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plagiarism-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plagiarism-list li {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plagiarism-list li b {
    color: #ffd54a;
    font-size: 1.3rem;
}

/* Icon for the list items */
.plagiarism-list li::before {
    content: '\f058'; /* FontAwesome Check Circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffd54a;
}

/* Apply justification globally to paragraphs, list items, and descriptions */
p, 
li, 
.glass-card p, 
.track-info p, 
.subtrack-list li, 
.guideline-section p,
.sanskrit-hero {
    text-align: justify;
    text-justify: inter-word; /* Spreads words evenly */
    hyphens: auto;           /* Optional: breaks long words to prevent gaps */
}

/* Ensure the Hero content stays justified but remains visually balanced */
.hero p, .sanskrit-hero {
    max-width: 800px; /* Limits width so justification looks better */
    margin-left: auto;
    margin-right: auto;
}

/* --- UNIVERSAL CLASSY BOLD TITLE STYLING --- */
h1, .abhinav-title, .section-title {
    font-weight: 900 !important;  /* Maximum thickness */
    text-transform: uppercase;
    letter-spacing: 2px;          
    text-align: center;
    line-height: 1.1;
    
    /* Solid Metallic Look */
    background: linear-gradient(to bottom, #ffffff 40%, #a1a1a1 100%);

    /* --- COMPATIBILITY FIXES --- */
    -webkit-background-clip: text; /* For Chrome, Safari, Edge */
    background-clip: text;         /* Standard property for Firefox and others */
    
    -webkit-text-fill-color: transparent; /* For Webkit browsers */
    color: transparent;                   /* Standard fallback to make gradient visible */

    /* Subtle thickness effect */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);

    /* Heavy Shadow for depth */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
    margin-bottom: 20px;
}

/* --- THE MAIN HERO TITLE (ABHINAV 2K26) --- */
.abhinav-title {
    font-size: 6rem; /* Increased size */
    letter-spacing: 8px;
    /* Strong glow to highlight the bold edges */
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    margin-top: 20px;
}

/* --- SECTION TITLES (About Us, Tracks, etc.) --- */
.section-title {
    font-size: 3.5rem; /* Bigger and Bolder */
    margin-top: 80px;
    margin-bottom: 50px;
}

/* The Bold Gradient Underline */
.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 6px; /* Thicker line */
    background: linear-gradient(90deg, var(--primary-blue), var(--contrast-orange));
    margin: 15px auto 0;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

/* ===========================
   CLASSY VIDEO BACKGROUND
   =========================== */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2; /* Stays behind everything, even the canvas */
    overflow: hidden;
    background-color: #02040a; /* Fallback color */
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
    filter: brightness(0.4) contrast(1.1); /* Darkens video for readability */
}

/* The dark gradient overlay makes text "pop" */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(2, 4, 10, 0.7) 0%,
        rgba(2, 4, 10, 0.3) 50%,
        rgba(2, 4, 10, 0.8) 100%
    );
    z-index: 1;
}

/* If you prefer an image instead of video, use this class on a div
.image-bg {
    background: url('bg-image.jpg') no-repeat center center/cover;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -2;
    filter: brightness(0.5);
} */

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

@media (max-width: 768px) {
    /* 1. Fix Huge Titles */
    .abhinav-title {
        font-size: 3rem !important; /* Shrink from 6rem */
        letter-spacing: 4px;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2.2rem !important;
        margin-top: 50px;
    }

    .page-title {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .sanskrit-hero {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* 2. Fix Navigation */
    nav {
        width: 95%;
        padding: 10px 20px;
        top: 10px;
        margin-top: 45px; /* Adjust for announcement bar */
    }

    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 10, 25, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        text-align: center;
    }

    .nav-links.active {
        display: flex; /* Shown when hamburger is clicked */
    }

    .hamburger {
        display: block !important; /* Ensure it shows up */
    }

    /* 3. Fix Countdown Timer (2x2 Grid) */
    .timer-box {
        gap: 10px;
    }

    .time-unit {
        min-width: 80px;
        padding: 15px;
    }

    .time-unit span {
        font-size: 1.8rem;
    }

    /* 4. Fix Track Boxes (Stacking) */
    .track-box, .track-box:nth-child(even) {
        flex-direction: column !important; /* Stack image on top of text */
        text-align: center;
    }

    .track-img {
        width: 100%;
        height: 200px;
    }

    .track-info {
        width: 100%;
        padding: 20px;
    }

    .subtrack-list {
        text-align: left;
        display: inline-block;
    }

    /* 5. Fix Plagiarism Card */
    .plagiarism-card {
        width: 90%;
        padding: 20px;
    }

    .plagiarism-list {
        flex-direction: column;
        gap: 15px;
    }

    /* 6. Fix Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-brand-box {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}
/* Rewards Section */
.rewards-section {
    margin-top: 80px;
    text-align: center;
}

.rewards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reward-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.reward-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
/* Same image box for ALL cards */
.guideline-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    border: 1px solid var(--contrast-orange);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
    object-fit: cover;
}

/* Special styling ONLY for poster */
.poster-img {
    object-fit: contain;          /* show full poster */
    background: #0b1a2a;          /* same dark theme bg */
    padding: 8px;                 /* breathing space */
}
.guideline-section {
    width: 100%;
    margin-bottom: 40px;
}

