        :root {
            --neon-green: #00FF41;
            --dark-green: #008F11;
            --bg-black: #050505;
            --card-bg: rgba(0, 20, 0, 0.6);
            --border-color: #003B00;
            /* New Palette */
            --neon-cyan: #00E5FF;
            --neon-pink: #FF0055;
            --neon-yellow: #FFFF00;
            --neon-purple: #BC13FE;
            --neon-orange: #FF5500;
        }

        /* --- TEXT COLOR UTILITIES --- */
        .text-green {
            color: var(--neon-green) !important;
            text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
        }

        .text-cyan {
            color: var(--neon-cyan) !important;
            text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
        }

        .text-pink {
            color: var(--neon-pink) !important;
            text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
        }

        .text-yellow {
            color: var(--neon-yellow) !important;
            text-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
        }

        .text-purple {
            color: var(--neon-purple) !important;
            text-shadow: 0 0 5px rgba(188, 19, 254, 0.5);
        }

        .text-orange {
            color: var(--neon-orange) !important;
            text-shadow: 0 0 5px rgba(255, 85, 0, 0.5);
        }

        .text-white {
            color: #fff !important;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .highlight-bg {
            background: rgba(0, 255, 65, 0.1);
            padding: 0 5px;
            border-radius: 2px;
            border-bottom: 1px solid var(--neon-green);
        }

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

        body {
            background-color: var(--bg-black);
            color: #EEEEEE;
            font-family: 'Share Tech Mono', monospace;
            overflow-x: hidden;
            line-height: 1.6;
            cursor: none;
            /* Hide default for Custom CSS Cursor */
        }

        /* Custom Cursor Elements */
        .cursor-dot,
        .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 9999;
            pointer-events: none;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: white;
            box-shadow: 0 0 10px var(--neon-green);
        }

        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 2px solid var(--neon-green);
            transition: width 0.2s, height 0.2s, background-color 0.2s;
            mix-blend-mode: difference;
        }

        /* Cursor Hover State */
        body.hovering .cursor-outline {
            width: 60px;
            height: 60px;
            background-color: rgba(0, 255, 65, 0.2);
            border-color: transparent;
        }



        /* Scroll Animations */
        .hidden-el {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

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

        /* CTA Section */
        .register-cta {
            text-align: center;
            margin: 50px 0;
        }

        /* CTA Button */
        .cta-btn {
            display: inline-block;
            color: var(--neon-green);
            text-decoration: none;
            font-size: 1.2rem;
            transition: 0.3s;
            padding: 12px 24px;
            border: 1px solid var(--dark-green);
            border-radius: 4px;
            background: rgba(0, 20, 0, 0.5);
            box-shadow: 0 0 5px rgba(0, 255, 65, 0.1);
            margin-top: 30px;
        }

        .cta-btn:hover {
            color: white;
            text-shadow: 0 0 8px var(--neon-green);
            background: rgba(0, 255, 65, 0.2);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
            transform: translateY(-2px);
        }



        /* --- BACKGROUND CANVAS --- */
        canvas#matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.8;
        }

        /* --- NAVIGATION --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 100;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
        }

        .logo-center {
            display: flex;
            align-items: center;
            gap: 20px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .logo-img {
            height: 80px;
            width: auto;
            filter: drop-shadow(0 0 10px var(--neon-green));
            margin-top: 20px;
        }

        .college-name {
            text-align: center;
            margin-top: 5px;
        }

        .college-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: textFlicker 3s infinite alternate;
        }

        .college-subtitle {
            font-size: 1.2rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 10px;
            text-shadow: 0 0 5px var(--neon-green);
        }

        .accreditation-text {
            font-size: 0.8rem;
            color: #88ff88;
            margin-bottom: 15px;
            line-height: 1.4;
            opacity: 0.8;
            text-shadow: 0 0 2px black;
        }




        .nameboard-img {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 0 8px var(--neon-green));
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links.left {
            margin-right: auto;
        }

        .nav-links.right {
            margin-left: auto;
        }

        .nav-links a {
            color: var(--neon-green);
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.3s;
            padding: 8px 16px;
            border: 1px solid var(--dark-green);
            border-radius: 4px;
            background: rgba(0, 20, 0, 0.5);
            box-shadow: 0 0 5px rgba(0, 255, 65, 0.1);
        }

        .nav-links a:hover {
            color: white;
            text-shadow: 0 0 8px var(--neon-green);
            background: rgba(0, 255, 65, 0.15);
            box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
            border-color: var(--neon-green);
            transform: scale(1.05);
        }

        /* --- LAYOUT UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 40px 0;
        }

        /* --- PROFESSIONAL LAYOUT UTILITIES --- */
        .page-wrapper {
            padding-top: 420px;
            /* Standardize header offset */
            min-height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .standard-section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
            position: relative;
        }

        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--dark-green), transparent);
            margin: 0;
            opacity: 0.5;
        }

        @media(max-width: 768px) {
            .page-wrapper {
                padding-top: 20px;
                /* Mobile offset */
            }
        }

        /* --- HERO SECTION --- */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            padding-top: 420px;
            /* Force content below header */
        }

        .pill-badge {
            border: 1px solid var(--dark-green);
            padding: 8px 20px;
            border-radius: 50px;
            background: rgba(0, 20, 0, 0.8);
            margin-bottom: 20px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
            margin-top: 20px;
        }

        .status-dot {
            height: 8px;
            width: 8px;
            background-color: var(--neon-green);
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            box-shadow: 0 0 5px var(--neon-green);
        }

        h1.glitch-title {
            font-size: 5rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
            animation: textFlicker 3s infinite alternate;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .inline-icon {
            height: 1.2em;
            width: auto;
            vertical-align: middle;
            filter: drop-shadow(0 0 10px var(--neon-green));
            margin-top: -10px;
            /* Slight adjustment for visual alignment */
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            color: #ccffcc;
            margin-bottom: 40px;
            text-shadow: 1px 1px 2px black;
        }

        .hero-logo {
            width: 600px;
            height: auto;
            filter: drop-shadow(0 0 15px var(--neon-green));
            margin-bottom: 20px;
            margin-top: 20px;
            /* Added spacing to prevent overlap */
        }

        /* Countdown */
        .countdown-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .time-box {
            background: rgba(0, 20, 0, 0.9);
            border: 1px solid var(--neon-green);
            padding: 20px;
            min-width: 100px;
            border-radius: 4px;
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
        }

        .time-val {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }

        .time-label {
            font-size: 0.8rem;
            color: var(--dark-green);
            text-transform: uppercase;
        }

        /* --- FEATURES CARDS --- */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 8px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            border-color: var(--neon-green);
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
            transform: translateY(-5px);
        }

        /* 3D Card Effects */
        .card-3d {
            perspective: 1000px;
            transform-style: preserve-3d;
            transition: transform 0.6s;
        }

        .card-3d:hover {
            transform: rotateY(15deg) rotateX(10deg) translateZ(20px);
            box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
            transition: transform 0.3s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.2) rotate(5deg);
            text-shadow: 0 0 10px var(--neon-green);
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .card p {
            color: #aaffaa;
            font-size: 1rem;
        }

        .prize-amount {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-green);
            margin-bottom: 10px;
        }

        /* --- REGISTRATION FORM --- */
        .register-section {
            text-align: center;
        }

        .section-header {
            font-size: 2rem;
            margin-bottom: 50px;
            text-transform: uppercase;
            text-align: center;
        }

        .sub-header {
            margin-bottom: 40px;
            color: #FFFFFF;
            /* Bright White */
            font-weight: bold;
            text-shadow: 0 0 5px white;
            text-align: center;
            display: block;
        }

        /* Terminal Window Style */
        /* Terminal Window Style */
        .terminal-window {
            background: rgba(5, 10, 5, 0.95);
            border: 1px solid #333;
            border-radius: 8px;
            max-width: 1100px;
            /* Landscape Width */
            width: 100%;
            margin: 0 auto;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
            text-align: left;
            overflow: hidden;
        }

        .terminal-bar {
            background: #1a1a1a;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #333;
        }

        .dots {
            display: flex;
            gap: 8px;
            margin-right: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .red {
            background: #ff5f56;
        }

        .yellow {
            background: #ffbd2e;
        }

        .green {
            background: #27c93f;
        }

        .terminal-title {
            color: #666;
            font-size: 0.9rem;
            margin: 0 auto;
            /* Centered */
            transform: translateX(-25px);
            /* Offset for dots */
        }

        /* Footer Tag */
        .footer-tag {
            max-width: 800px;
            width: 90%;
            height: auto;
            opacity: 0.9;
            border: 1px solid var(--neon-green);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
            display: block;
            margin: 40px auto 20px auto;
        }

        .terminal-body {
            padding: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-green);
            font-size: 0.9rem;
        }

        label::before {
            content: "> ";
            color: var(--neon-green);
        }

        input,
        select {
            width: 100%;
            background: #0f1f0f;
            border: 1px solid var(--dark-green);
            padding: 12px 15px;
            color: var(--neon-green);
            font-family: 'Share Tech Mono', monospace;
            font-size: 1rem;
            border-radius: 4px;
            outline: none;
        }

        input:focus,
        select:focus {
            border-color: var(--neon-green);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
        }

        /* --- FOOTER / JACK IN --- */
        .jack-in-btn {
            width: 100%;
            background: rgba(0, 20, 0, 0.5);
            color: var(--neon-green);
            font-family: 'Share Tech Mono', monospace;
            font-size: 1.5rem;
            font-weight: bold;
            padding: 20px;
            border: 1px solid var(--dark-green);
            border-radius: 4px;
            cursor: pointer;
            text-transform: uppercase;
            margin-top: 20px;
            transition: 0.3s;
            box-shadow: 0 0 5px rgba(0, 255, 65, 0.1);
        }

        .jack-in-btn:hover {
            color: white;
            text-shadow: 0 0 8px var(--neon-green);
            background: rgba(0, 255, 65, 0.15);
            box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
            border-color: var(--neon-green);
            transform: scale(1.02);
        }

        .footer-text {
            text-align: center;
            padding: 40px;
            color: var(--dark-green);
            font-size: 0.9rem;
            background: black;
            margin-top: 50px;
        }

        /* About page styles */
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .info-block {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
        }

        .info-block h3 {
            margin-bottom: 10px;
            color: var(--neon-green);
        }

        /* Prizes page styles */
        .perks-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .perk-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #aaffaa;
        }

        .perk-item i {
            color: var(--neon-green);
        }

        /* Animations */
        @keyframes textFlicker {
            0% {
                opacity: 1;
                text-shadow: 0 0 10px var(--neon-green);
            }

            5% {
                opacity: 0.8;
                text-shadow: none;
            }

            10% {
                opacity: 1;
                text-shadow: 0 0 10px var(--neon-green);
            }

            100% {
                opacity: 1;
                text-shadow: 0 0 20px var(--neon-green);
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0.6;
                transform: scale(0.95);
            }

            50% {
                opacity: 1;
                transform: scale(1.05);
            }

            100% {
                opacity: 0.6;
                transform: scale(0.95);
            }
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }


        /* Logo Marquee */
        .logo-marquee-container {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            padding: 10px 0;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .logo-marquee-content {
            display: inline-block;
            animation: marqueeScroll 80s linear infinite;
        }

        .logo-marquee-content img {
            height: 50px;
            width: auto;
            margin: 0 40px;
            vertical-align: middle;
            filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.4));
            opacity: 0.9;
        }



        /* News Marquee */
        .news-marquee-container {
            width: 100%;
            background: rgba(0, 10, 0, 0.9);
            border-top: 1px solid var(--dark-green);
            border-bottom: 1px solid var(--dark-green);
            overflow: hidden;
            white-space: nowrap;
            padding: 8px 0;
            margin-top: 10px;
        }

        .news-marquee-content {
            display: flex;
            width: max-content;
            animation: marqueeScroll 60s linear infinite;
        }

        .news-marquee-content a {
            text-decoration: none;
            cursor: pointer;
        }

        .news-marquee-content span {
            color: #00FFFF;
            /* Cyan for high visibility/attraction */
            font-size: 1.2rem;
            font-weight: 900;
            /* Extra Bold */
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-right: 0px;
            text-shadow: 0 0 8px #00FFFF, 0 0 15px rgba(0, 255, 255, 0.4);
            transition: all 0.3s;
        }

        .news-marquee-content a:hover span {
            color: #FFFFFF;
            text-shadow: 0 0 15px #00FFFF, 0 0 30px #00FFFF;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Mobile adjustments */
        @media(max-width: 768px) {

            /* Typography Scaling */
            h1.glitch-title {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .header-title {
                font-size: 1.5rem !important;
                /* Override inline styles */
                letter-spacing: 1px !important;
            }

            .header-subtitle {
                font-size: 0.9rem !important;
                letter-spacing: 2px !important;
            }

            .hero {
                padding-top: 240px;
                padding-left: 20px;
                padding-right: 20px;
            }

            .hero-logo-container {
                margin-bottom: 30px;
                display: block;
            }

            .hero-logo {
                width: 250px;
                max-width: 80%;
                height: auto;
                filter: drop-shadow(0 0 15px var(--neon-green));
                opacity: 0.9;
            }

            /* Enhanced Mobile Nav Alignment */
            .nav-bottom-row {
                flex-direction: column;
                gap: 20px;
                padding: 20px !important;
            }

            .nav-links {
                width: 100%;
                justify-content: center;
                gap: 15px;
            }

            .nav-links a {
                width: 100%;
                text-align: center;
                margin-bottom: 5px;
            }
        }

        /* New Nav Row Class */
        .nav-bottom-row {
            display: flex;
            justify-content: center;
            width: 100%;
            padding: 10px 40px;
            border-top: 1px solid rgba(0, 255, 65, 0.2);
            margin-top: 15px;
        }

        .hero p {
            font-size: 1.1rem;
        }

        /* Layout Stacking */
        .countdown-container {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .time-box {
            min-width: 70px;
            padding: 10px;
        }

        .time-val {
            font-size: 1.8rem;
        }

        /* Navigation Adjustments */
        .nav-links {
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            font-size: 0.9rem;
            padding: 6px 12px;
        }

        /* Terminal/Form Adjustments */
        .terminal-window {
            width: 100%;
            margin: 0;
        }

        .terminal-body {
            padding: 20px;
        }

        .footer-tag {
            width: 100%;
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {

            /* Hide custom cursor on touch devices */
            .cursor-dot,
            .cursor-outline {
                display: none;
            }

            body {
                cursor: auto;
                /* Restore default system cursor/touch */
            }

            /* Increase touch targets/hover simulation */
            .card:active,
            .cta-btn:active,
            .nav-links a:active {
                transform: scale(0.98);
                border-color: var(--neon-green);
            }
        }

        /* --- TEAM MODULE STYLES --- */
        .member-card {
            border: 1px solid var(--dark-green);
            background: rgba(0, 10, 0, 0.3);
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }

        .secondary-btn {
            background: transparent;
            border: 1px solid var(--neon-green);
            color: var(--neon-green);
            padding: 10px 20px;
            font-family: 'Share Tech Mono', monospace;
            cursor: pointer;
            transition: 0.3s;
        }

        .secondary-btn:hover {
            background: rgba(0, 255, 65, 0.1);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
        }

        /* --- HERO SECTION --- */
        /* --- HERO SECTION --- */
        .hero-logo {
            width: 850px;
            /* Increased size as requested */
            max-width: 90%;
            height: auto;
            filter: drop-shadow(0 0 15px var(--neon-green));
            animation: float 3s ease-in-out infinite;
            margin-top: 10px;
            /* Optimized spacing */
        }

        /* Department Title in Hero */
        .dept-title {
            font-size: 3.5rem;
            color: #00ffff;
            /* Cyber Blue */
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-top: 10px;
            margin-bottom: 0px;
            /* Reduced gap */
            text-shadow: 0 0 10px #00ffff, 0 0 20px #0000ff;
            font-weight: bold;
            animation: textFlicker 3s infinite alternate;
        }

        @media(max-width: 768px) {
            .dept-title {
                font-size: 1.2rem;
                letter-spacing: 2px;
            }
        }

        /* Conducts Text */
        .conducts-text {
            font-size: 1.8rem;
            color: #ffffff;
            letter-spacing: 8px;
            font-weight: bold;
            margin: -5px 0 0px 0;
            /* Tighter spacing */
            text-shadow: 0 0 5px var(--neon-green);
            opacity: 0.9;
        }

        /* --- FIRE GLITCH TIMER --- */
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .time-box {
            background: rgba(0, 5, 0, 0.9);
            border: 1px solid var(--neon-green);
            padding: 20px;
            border-radius: 4px;
            min-width: 120px;
            position: relative;
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
        }

        .time-val {
            font-size: 4rem;
            /* Large size */
            font-weight: 800;
            color: #ffffff;
            display: block;
            text-shadow: 2px 2px 0px #ff0000, -2px -2px 0px var(--neon-green);
            animation: fireGlitch 0.25s infinite;
            font-family: 'Share Tech Mono', monospace;
        }

        .time-label {
            font-size: 1rem;
            color: var(--neon-green);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 5px;
        }

        @keyframes fireGlitch {
            0% {
                text-shadow: 2px 2px 0px #ff0000, -2px -2px 0px var(--neon-green);
                transform: translate(0, 0);
            }

            25% {
                text-shadow: -2px 2px 0px #ff0000, 2px -2px 0px var(--neon-green);
                transform: translate(-2px, 2px);
            }

            50% {
                text-shadow: 2px -2px 0px #ff0000, -2px 2px 0px var(--neon-green);
                transform: translate(2px, -2px);
            }

            75% {
                text-shadow: -2px -2px 0px #ff0000, 2px 2px 0px var(--neon-green);
                transform: translate(-1px, -1px);
            }

            100% {
                text-shadow: 2px 2px 0px #ff0000, -2px -2px 0px var(--neon-green);
                transform: translate(0, 0);
            }
        }


        /* --- ORGANIZING NODES (Coordinators - Reference Style) --- */
        .organizing-nodes-section {
            background: #000;
            padding: 40px 20px;
            border-top: 1px solid #111;
            text-align: left;
            background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.98)), url('matrix_bg.jpg');
            background-size: cover;
            position: relative;
            overflow: hidden;
        }

        /* Matrix rain overlay effect for footer */
        .organizing-nodes-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(0deg, transparent 0, transparent 50%, rgba(0, 255, 65, 0.05) 50%, rgba(0, 255, 65, 0.05) 100%);
            background-size: 100% 4px;
            pointer-events: none;
        }

        .nodes-header {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 5px;
            text-shadow: 0 0 5px #fff;
            text-align: center;
        }

        .nodes-subtitle {
            color: #666;
            font-size: 1rem;
            margin-bottom: 60px;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
        }

        .nodes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .node-card {
            background: transparent;
            border: none;
            padding: 0;
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .node-avatar-placeholder {
            width: 50px;
            height: 50px;
            background: transparent;
            border: none;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            box-shadow: none;
            flex-shrink: 0;
            padding-top: 5px;
        }

        .node-avatar-placeholder i {
            font-size: 2rem;
            color: #fff;
            text-shadow: 0 0 10px var(--neon-green);
        }

        .node-content-wrapper {
            width: 100%;
        }

        .node-category {
            font-size: 1.4rem;
            color: #fff;
            font-weight: bold;
            margin-bottom: 2px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .node-role-label {
            color: #aaa;
            font-size: 1rem;
            margin-bottom: 20px;
            display: block;
            letter-spacing: 1px;
            font-family: 'Share Tech Mono', monospace;
        }

        .node-item .node-role-sublabel {
            color: #aaa;
            font-size: 0.85rem;
            margin-bottom: 5px;
            /* Increased slightly */
            display: block;
            text-transform: uppercase;
            /* Ensure professionalism */
            letter-spacing: 1px;
        }

        .node-list {
            list-style: none;
            padding: 0;
            text-align: left;
            width: 100%;
        }

        .node-item {
            margin-bottom: 0px;
            font-size: 1.1rem;
            color: #ddd;
            border-bottom: 1px solid rgba(0, 255, 65, 0.2);
            padding: 20px 0;
            /* Increased padding slightly for better spacing */
            font-family: 'Courier New', monospace;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
            height: 100%;
            /* Ensure full height usage if possible */
            justify-content: center;
            /* Center content vertically */
            min-height: 120px;
            /* Enforce a minimum height for uniformity */
        }

        .node-item strong {
            display: block;
            color: #fff;
            font-weight: bold;
            margin-bottom: 5px;
            /* Space between name and number */
            font-size: 1.2rem;
            letter-spacing: 1px;
            width: 100%;
            /* Take full width */
        }

        /* Phone numbers */
        .node-item span,
        .node-item a {
            display: block;
            color: #00FF41;
            /* Neon Green for numbers */
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .node-item a:hover {
            color: #fff;
            text-shadow: 0 0 10px var(--neon-green);
            transform: translateX(5px);
        }

        .node-content-wrapper .node-item {
            display: flex;
            flex-direction: column;
            /* Stack Name and Number for clean alignment like the screenshot kind of implies, or simply handle wrap better */
            align-items: flex-start;
        }

        .node-content-wrapper .node-item strong {
            margin-right: 0;
            margin-bottom: 5px;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }


        .footer-copyright {
            margin-top: 80px;
            color: #bbbbbb;
            /* Brighter for visibility */
            font-size: 0.9rem;
            text-align: center;
            border-top: 1px solid #111;
            padding-top: 20px;
            text-shadow: 0 0 2px black;
        }

        /* --- MOBILE RESPONSIVENESS (iOS/Android) --- */
        @media (max-width: 768px) {

            /* Header Adjustments */
            .college-title {
                font-size: 1.5rem;
                letter-spacing: 1px;
                line-height: 1.2;
                margin-bottom: 5px;
            }

            .college-subtitle {
                font-size: 0.8rem;
                letter-spacing: 1px;
                margin-bottom: 5px;
            }

            .accreditation-text {
                font-size: 0.6rem;
                line-height: 1.2;
                padding: 0 10px;
                /* Add padding to prevent edge hitting */
            }

            .logo-img {
                height: 60px !important;
                /* Smaller logo */
                margin-top: 5px;
            }

            nav {
                flex-direction: column;
                padding: 10px;
                position: relative;
                /* Release fixed position for mobile flow if needed, or keep absolute with tweaks */
                background: rgba(0, 0, 0, 0.95);
                /* Solid bg for readability */
            }

            .logo-center {
                position: relative;
                left: auto;
                transform: none;
                flex-direction: column;
                text-align: center;
                margin-bottom: 20px;
            }

            .nav-links {
                flex-wrap: wrap;
                /* Allow wrapping */
                justify-content: center;
                gap: 10px;
                margin-top: 10px;
                width: 100%;
                /* Full width */
            }

            .nav-links.left,
            .nav-links.right {
                margin: 0;
                /* Remove auto margins to center everything */
                justify-content: center;
            }

            .nav-btn {
                padding: 8px 12px;
                font-size: 0.8rem;
            }

            /* Hero Layout Fixes */
            .hero {
                padding-top: 20px;
                /* Reduced from 150px/650px as header is now relative/flow */
                min-height: auto;
                /* Allow content to dictate height */
                padding-bottom: 50px;
            }

            .hero-logo {
                width: 100%;
                max-width: 300px;
                /* Constrain logo width */
                margin-top: 20px;
            }

            .dept-title {
                font-size: 1.4rem !important;
                letter-spacing: 1px;
                margin-top: 20px;
                white-space: normal;
                /* Allow wrapping */
                width: 100%;
                overflow: visible;
                display: block;
                text-align: center;
                line-height: 1.4;
            }

            /* If screen is VERY small, allow wrap but center nicely */
            @media (max-width: 380px) {
                .dept-title {
                    font-size: 0.9rem !important;
                    white-space: normal;
                }
            }

            .conducts-text {
                font-size: 1.2rem !important;
                margin: 10px 0;
            }

            /* Container Padding Fix for other pages */
            .container {
                padding-top: 20px !important;
                /* Override inline styles */
            }

            /* Timer Fixes */
            .time-val {
                font-size: 2.5rem;
            }

            .countdown-container {
                gap: 15px;
            }

            .time-box {
                min-width: 80px;
                padding: 10px;
            }

            /* Node Section */
            .nodes-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .node-card {
                flex-direction: column;
                /* Stack for mobile */
                align-items: center;
                /* Center align */
                text-align: center;
                width: 100%;
                padding: 20px;
            }

            .node-avatar-placeholder {
                margin: 0 auto 15px auto;
                /* Center avatar */
            }

            .node-list {
                text-align: center;
            }

            .jack-in-btn {
                font-size: 1.1rem;
                padding: 15px;
            }

            /* Responsive Badges */
            .cyber-fee-badge {
                padding: 10px 20px;
                font-size: 1rem;
                clip-path: polygon(5% 0, 100% 0, 100% 80%, 95% 100%, 0 100%, 0 20%);
                width: 90%;
            }

            .cyber-glitch-text {
                font-size: 0.9rem;
            }

            .register-badge {
                bottom: 10px;
                right: 10px;
            }

            .register-badge a {
                padding: 8px 16px;
                font-size: 0.9rem;
            }

            /* Slower Marquees for Mobile */
            .news-marquee-content {
                animation-duration: 100s !important;
            }

            .logo-marquee-content {
                animation-duration: 100s !important;
            }
        }

        /* --- WHAT TO EXPECT & WHO CAN PARTICIPATE SECTION --- */
        .info-section {
            padding: 60px 20px;
            background: transparent;

        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;

        }

        .info-card {
            background: #050505;
            border: 1px solid #111;
            border-radius: 16px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

        }

        .info-card h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 30px;
            font-weight: 700;
            letter-spacing: 1px;

        }

        /* Green Card Styling */
        .info-card.green-card {
            border-color: rgba(0, 255, 65, 0.2);
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.05);

        }

        .info-card.green-card:hover {
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
            transform: translateY(-5px);
            border-color: rgba(0, 255, 65, 0.5);

        }

        .highlight-green {
            color: var(--neon-green);
        }

        /* Blue Card Styling */
        .info-card.blue-card {
            border-color: rgba(0, 229, 255, 0.2);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.05);
        }

        .info-card.blue-card:hover {
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
            transform: translateY(-5px);
            border-color: rgba(0, 229, 255, 0.5);
        }

        .highlight-blue {
            color: #00e5ff;
        }

        /* List Styling */
        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-list li {
            display: flex;
            align-items: center;
            background: #0a0a0a;
            padding: 15px 20px;
            border-radius: 12px;
            border: 1px solid #1a1a1a;
            transition: 0.2s;
        }

        .info-list li:hover {
            background: #111;
            border-color: #333;
        }

        .icon-box {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .green-icon {
            background: rgba(0, 255, 65, 0.1);
            color: var(--neon-green);
            border: 1px solid rgba(0, 255, 65, 0.2);
        }

        .blue-icon {
            background: rgba(0, 229, 255, 0.1);
            color: #00e5ff;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

        .text-box {
            display: flex;
            flex-direction: column;
        }

        .text-box strong {
            color: #b0b0b0;
            font-size: 0.9rem;
            font-family: 'Share Tech Mono', monospace;

        }

        /* Mobile Adjust */
        @media (max-width: 768px) {
            .info-grid {
                grid-template-columns: 1fr;

            }

            .info-card {
                padding: 25px;

            }


        }

        .mission-interactive:hover {
            background: rgba(0, 20, 0, 0.4);
            border-color: var(--neon-green) !important;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
            transform: scale(1.02);
        }

        /* Flexbox Override for Cards Grid */
        .cards-grid {
            display: flex !important;
            flex-wrap: wrap !important;
            justify-content: center !important;
            gap: 30px;
            margin-bottom: 50px;
        }

        .card {
            flex: 1 1 300px;
            max-width: 350px;
        }

        /* REGISTER BADGE */
        .register-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            animation: bounce 2s infinite;
        }

        .register-badge a {
            display: inline-block;
            padding: 15px 30px;
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid var(--neon-green);
            color: var(--neon-green);
            font-family: 'Share Tech Mono', monospace;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 2px;
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .register-badge a:hover {
            background: var(--neon-green);
            color: black;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
            transform: scale(1.1);
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        /* CYBER FEE BADGE - HUD STYLE */
        .cyber-fee-badge {
            position: relative;
            display: inline-block;
            padding: 15px 40px;
            margin-bottom: 30px;
            background: rgba(0, 20, 0, 0.8);
            border: 1px solid var(--neon-green);
            color: #ffcc00;
            /* Cyber Yellow */
            font-family: 'Share Tech Mono', monospace;
            font-size: 1.3rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 255, 65, 0.1);
            transition: all 0.3s ease;
            cursor: default;
            overflow: hidden;
        }

        /* Internal Glow Line */
        .cyber-fee-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.4), transparent);
            transform: skewX(-20deg);
            transition: left 0.5s;
            animation: shine 4s infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            20% {
                left: 200%;
            }

            100% {
                left: 200%;
            }
        }

        /* Hover Effects */
        .cyber-fee-badge:hover {
            background: rgba(0, 40, 0, 0.9);
            color: #fff;
            text-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
            box-shadow: 0 0 25px rgba(255, 204, 0, 0.4), inset 0 0 30px rgba(0, 255, 65, 0.2);
            transform: scale(1.05) translateY(-2px);
            border-color: #ffcc00;
        }

        /* Glitch Animation for the Text Span */
        .cyber-glitch-text {
            position: relative;
            display: inline-block;
        }

        .cyber-fee-badge:hover .cyber-glitch-text {
            animation: glitch-anim 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
        }

        @keyframes glitch-anim {
            0% {
                transform: translate(0)
            }

            20% {
                transform: translate(-2px, 2px)
            }

            40% {
                transform: translate(-2px, -2px)
            }

            60% {
                transform: translate(2px, 2px)
            }

            80% {
                transform: translate(2px, -2px)
            }

            100% {
                transform: translate(0)
            }
        }

        /* Status Icon Pulse */
        .fee-icon {
            color: var(--neon-green);
            margin-right: 10px;
            animation: pulse-icon 1.5s infinite;

        }

        @keyframes pulse-icon {
            0% {
                opacity: 0.8;
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            }

            50% {
                opacity: 1;
                text-shadow: 0 0 15px white;
            }

            100% {
                opacity: 0.8;
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            }
        }

        /* --- NEWS MARQUEE (Scrolling Text) --- */
        .news-marquee-container {
            width: 100%;
            background: #000;
            border-top: 1px solid var(--neon-green);
            border-bottom: 1px solid var(--neon-green);
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            padding: 10px 0;
            margin-top: 5px;
            z-index: 90;
        }

        .news-marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: marqueeScroll 30s linear infinite;
            padding-left: 100%;
            /* Start off-screen */
        }

        /* Ensure the link covers the text */
        .news-marquee-content a {
            text-decoration: none;
            display: inline-block;
        }

        .news-marquee-content span {
            color: #00BFFF;
            font-size: 1.3rem;
            font-weight: bold;
            text-shadow: 0 0 5px #00BFFF;
            margin-right: 50px;
            letter-spacing: 2px;
        }

        .news-marquee-container:hover .news-marquee-content {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* --- HACKER TERMINAL OVERLAY --- */
        #hacker-terminal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(5, 5, 5, 0.95);
            z-index: 99999;
            padding: 40px;
            font-family: 'Share Tech Mono', monospace;
            overflow-y: auto;
            display: none;
            /* Hidden by default */
        }

        #terminal-output {
            color: var(--neon-green);
            font-size: 1.1rem;
            white-space: pre-wrap;
            margin-bottom: 20px;
        }

        .terminal-input-line {
            display: flex;
            align-items: center;
            color: var(--neon-green);
            font-size: 1.1rem;
        }

        .terminal-prompt {
            margin-right: 10px;
            font-weight: bold;
        }

        #terminal-input {
            background: transparent;
            border: none;
            color: #fff;
            font-family: 'Share Tech Mono', monospace;
            font-size: 1.1rem;
            flex-grow: 1;
            outline: none;
            caret-color: var(--neon-green);
        }

        /* --- MOBILE RESPONSIVENESS OVERHAUL --- */
        @media screen and (max-width: 768px) {

            /* TYPOGRAPHY */
            .glitch-title {
                font-size: 3rem !important;
            }

            .section-header {
                font-size: 1.8rem !important;
                margin-bottom: 30px !important;
            }

            .header-title {
                font-size: 1.8rem !important;
            }

            .header-subtitle {
                font-size: 1rem !important;
            }

            .dept-title {
                font-size: 2rem !important;
                margin-top: 15px;
            }

            /* LOGO */
            .logo-img {
                height: 80px !important;
                margin-top: 0 !important;
            }

            /* NAVIGATION */
            .nav-bottom-row {
                position: relative;
                padding: 10px 20px !important;
            }

            .nav-links {
                display: none;
                /* Hidden by default on mobile */
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(5, 5, 5, 0.98);
                z-index: 1000;
                justify-content: center;
                align-items: center;
                gap: 20px;
                padding: 40px;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                font-size: 1.2rem;
                /* Smaller to fit all */
                width: 90%;
                text-align: center;
                padding: 12px !important;
                /* Reduced padding */
                background: rgba(0, 40, 0, 0.7) !important;
                border: 1px solid var(--neon-green) !important;
                margin-bottom: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
            }

            /* Hamburger Button */
            .menu-toggle {
                display: block !important;
                background: transparent;
                border: 2px solid var(--neon-green) !important;
                color: var(--neon-green);
                padding: 10px 15px !important;
                font-size: 1.5rem !important;
                cursor: pointer;
                z-index: 1001;
                border-radius: 4px;
                box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
            }

            .menu-toggle.hidden {
                display: none !important;
            }

            /* Close Button inside menu */
            .menu-close {
                display: block !important;
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 3rem;
                color: var(--neon-green);
                cursor: pointer;
                padding: 15px;
            }

            /* LAYOUT STACKING */
            .cards-grid,
            .nodes-grid,
            .grid-2,
            .about-content,
            .dashboard-members {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
            }

            .hero {
                padding-top: 35% !important;
            }

            .hero-logo-container {
                margin: 0 auto 40px auto !important;
            }

            .hero-logo {
                width: 420px !important;
                max-width: 98% !important;
                filter: drop-shadow(0 0 25px var(--neon-green)) !important;
            }

            .countdown-container {
                gap: 15px !important;
            }

            .time-unit {
                width: 70px !important;
            }

            .time-value {
                font-size: 1.8rem !important;
            }

            /* TERMINAL WINDOWS */
            .terminal-window {
                width: 98% !important;
                margin: 0 auto !important;
            }

            .terminal-body {
                padding: 20px !important;
            }

            /* FORMS */
            .register-form {
                padding: 20px !important;
            }

            /* UTILS */
            .container {
                padding: 0 20px !important;
            }

            /* RESTORE SYSTEM CURSOR ON MOBILE */
            body {
                cursor: auto !important;
            }

            .cursor-dot,
            .cursor-outline {
                display: none !important;
            }

            /* ADMIN SPECIFIC */
            /* ADMIN SPECIFIC */
            .admin-container {
                margin-top: 220px !important;
                /* Adjusted for mobile header height */
                padding: 10px !important;
            }

            .table-responsive {
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                /* Smooth scrolling on iOS */
            }

            table {
                min-width: 800px;
                /* Force table to retain width so it scrolls */
            }
        }

        /* Base style for elements hidden on desktop but used on mobile */
        .menu-toggle,
        .menu-close {
            display: none;
        }

        @keyframes pulseRed {
            0% {
                transform: scale(1);
                box-shadow: 0 0 10px #ff3333;
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 20px #ff3333;
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 10px #ff3333;
            }
        }

        /* Mobile Register Badge Override */
        @media (max-width: 768px) {
            .register-badge {
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                padding: 15px;
                background: rgba(0, 0, 0, 0.95);
                border-top: 1px solid var(--neon-green);
                animation: none;
                /* Disable bounce on mobile */
                display: flex;
                justify-content: center;
                box-shadow: 0 -5px 20px rgba(0, 255, 65, 0.2);
            }

            .register-badge a {
                width: 100%;
                text-align: center;
                display: block;
                padding: 15px;
                font-size: 1.1rem;
                border-radius: 4px;
                /* Keep consistent with design */
                box-sizing: border-box;
                /* Ensure padding doesn't overflow width */
            }
        }