        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background: #0c1027;
            color: #e6f7ff;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
            touch-action: manipulation;
        }

        @media (hover: none) and (pointer: coarse) {
            .btn-primary,
            .vote-btn,
            .social-nav,
            .social-icon {
                min-height: 44px;
                min-width: 44px;
            }

            .nav-menu a {
                padding: 12px 15px;
            }
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 40%),
                linear-gradient(180deg, #0c1027 0%, #1a1f4e 40%, #2a2f7e 100%);
            z-index: -3;
        }

        .gd-platforms {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            pointer-events: none;
            overflow: hidden;
        }

        .platform {
            position: absolute;
            background: rgba(0, 200, 255, 0.1);
            border: 2px solid rgba(0, 255, 255, 0.3);
            animation: platform-float 20s infinite linear;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

        .platform:nth-child(1) {
            width: 200px;
            height: 40px;
            top: 20%;
            left: -200px;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .platform:nth-child(2) {
            width: 150px;
            height: 30px;
            top: 60%;
            left: -150px;
            animation-delay: 5s;
            animation-duration: 30s;
        }

        .platform:nth-child(3) {
            width: 180px;
            height: 35px;
            top: 40%;
            left: -180px;
            animation-delay: 10s;
            animation-duration: 35s;
        }

        @keyframes platform-float {
            0% {
                transform: translateX(-100%) translateY(0);
            }

            50% {
                transform: translateX(100vw) translateY(-20px);
            }

            100% {
                transform: translateX(-100%) translateY(0);
            }
        }

        .grid-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 200, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 200, 255, 0.05) 1px, transparent 1px),
                radial-gradient(circle at center, rgba(0, 100, 255, 0.03) 0%, transparent 70%);
            background-size: 50px 50px;
            z-index: -1;
            pointer-events: none;
        }

        .gd-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .gd-particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: gd-particle-float 15s infinite linear;
        }

        .gd-particle:nth-child(odd) {
            background: rgba(0, 200, 255, 0.9);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .gd-particle:nth-child(3n) {
            background: rgba(255, 100, 100, 0.9);
            box-shadow: 0 0 10px rgba(255, 100, 100, 0.5);
        }

        .gd-particle:nth-child(5n) {
            background: rgba(100, 255, 100, 0.9);
            box-shadow: 0 0 10px rgba(100, 255, 100, 0.5);
        }

        @keyframes gd-particle-float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .gd-wave {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(transparent, rgba(0, 200, 255, 0.1));
            z-index: -1;
            animation: wave-pulse 4s infinite ease-in-out;
        }

        @keyframes wave-pulse {

            0%,
            100% {
                height: 100px;
                opacity: 0.1;
            }

            50% {
                height: 150px;
                opacity: 0.2;
            }
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        #nominees {
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        #nominees::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, 
                transparent 0%, 
                rgba(0, 100, 255, 0.05) 20%, 
                rgba(0, 200, 255, 0.08) 50%, 
                rgba(0, 100, 255, 0.05) 80%, 
                transparent 100%);
            z-index: -1;
            pointer-events: none;
        }

        #nominees > .container {
            max-width: 1200px;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section {
            padding: 60px 0;
            position: relative;
        }

        .neon-banner {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 15, 40, 0.95);
            padding: 10px 0;
            z-index: 1000;
            text-align: center;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(0, 200, 255, 0.3);
            box-shadow: 0 5px 30px rgba(0, 150, 255, 0.2);
        }

        .neon-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 6px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #00ffff, #0088ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
            animation: neon-pulse 2s infinite alternate;
        }

        @media (max-width: 768px) {
            .neon-text {
                font-size: 20px;
                letter-spacing: 3px;
            }
        }

        @media (max-width: 480px) {
            .neon-text {
                font-size: 16px;
                letter-spacing: 2px;
            }
        }

        @keyframes neon-pulse {
            0% {
                text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
            }

            100% {
                text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
            }
        }

        .navbar {
            position: sticky;
            width: 100%;
            background: rgba(15, 20, 50, 0.9);
            padding: 15px 0;
            z-index: 999;
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 200, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0, 100, 255, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .gd-icon {
            width: 45px;
            height: 45px;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateX(-20deg) rotateY(-20deg);
            animation: cube-rotate 10s infinite linear;
        }

        .cube-face {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid;
            background: rgba(0, 200, 255, 0.3);
        }

        .front {
            transform: translateZ(22px);
            border-color: #00ffff;
            background: rgba(0, 200, 255, 0.4);
        }

        .back {
            transform: translateZ(-22px) rotateY(180deg);
            border-color: #0088ff;
            background: rgba(0, 150, 255, 0.4);
        }

        .left {
            transform: translateX(-22px) rotateY(-90deg);
            border-color: #0066ff;
            background: rgba(0, 100, 255, 0.4);
        }

        .right {
            transform: translateX(22px) rotateY(90deg);
            border-color: #00ffff;
            background: rgba(0, 200, 255, 0.4);
        }

        .top {
            transform: translateY(-22px) rotateX(90deg);
            border-color: #00ccff;
            background: rgba(0, 255, 255, 0.4);
        }

        .bottom {
            transform: translateY(22px) rotateX(-90deg);
            border-color: #0088ff;
            background: rgba(0, 150, 255, 0.4);
        }

        @keyframes cube-rotate {
            0% {
                transform: rotateX(-20deg) rotateY(0deg);
            }

            100% {
                transform: rotateX(-20deg) rotateY(360deg);
            }
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(90deg, #00ffff, #0088ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 200, 255, 0.3);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            color: #b3e0ff;
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 18px;
            padding: 8px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
            border: 1px solid transparent;
        }

        .nav-menu a:hover {
            color: #00ffff;
            background: rgba(0, 200, 255, 0.15);
            border-color: rgba(0, 255, 255, 0.3);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00ffff, #0088ff);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-menu a:hover::after {
            width: 70%;
        }

        #winners-link {
            display: none;
            opacity: 0.5;
            pointer-events: none;
        }

        #winners-link.active {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }

        .language-switcher {
            position: relative;
            display: inline-block;
        }

        .language-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(0, 200, 255, 0.3);
            color: #b3e0ff;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .language-btn:hover {
            background: rgba(0, 200, 255, 0.2);
            color: #00ffff;
            border-color: rgba(0, 255, 255, 0.5);
            box-shadow: 0 5px 15px rgba(0, 200, 255, 0.2);
        }

        .language-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(15, 20, 50, 0.98);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 200, 255, 0.3);
            border-radius: 15px;
            padding: 15px;
            min-width: 170px;
            z-index: 1000;
            margin-top: 10px;
            box-shadow: 0 10px 30px rgba(0, 100, 255, 0.3);
        }

        .language-dropdown.active {
            display: block;
        }

        .language-option {
            padding: 12px 15px;
            color: #b3e0ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 5px 0;
        }

        .language-option:hover {
            background: rgba(0, 200, 255, 0.2);
            color: #00ffff;
            transform: translateX(5px);
        }

        .language-option.active {
            background: rgba(0, 200, 255, 0.3);
            color: #00ffff;
            border-left: 3px solid #00ffff;
        }

        .nav-social {
            display: flex;
            gap: 15px;
        }

        .social-nav {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #00ffff;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid transparent;
        }

        .social-nav:hover {
            background: #00ffff;
            color: #0c1027;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.4);
            border-color: #00ffff;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #00ffff;
            font-size: 26px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            background: rgba(0, 200, 255, 0.15);
            transform: rotate(90deg);
        }

        .hero {
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 200px;
                padding-bottom: 120px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 150px;
                padding-bottom: 80px;
            }
        }

        @media (max-width: 360px) {
            .hero {
                padding-top: 130px;
                padding-bottom: 60px;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 100, 255, 0.25) 0%, transparent 70%);
            z-index: -1;
            animation: hero-glow 8s infinite alternate;
        }

        @keyframes hero-glow {
            0% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 40px;
            line-height: 1.1;
        }

        .hero-title .gd-gradient {
            display: block;
            background: linear-gradient(90deg, #ff3366, #ff9966, #ffff66, #66ff66, #66ffff, #6666ff, #ff66ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient-shift 8s infinite alternate;
            text-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
        }

        .hero-title .gd-outline {
            display: block;
            color: transparent;
            -webkit-text-stroke: 3px #00ffff;
            text-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
            font-size: 4rem;
            letter-spacing: 2px;
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 4rem;
            }

            .hero-title .gd-outline {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-title .gd-outline {
                font-size: 2.5rem;
                -webkit-text-stroke: 2px #00ffff;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.1;
            }

            .hero-title .gd-outline {
                font-size: 2rem;
                -webkit-text-stroke: 1.5px #00ffff;
            }
        }

        @media (max-width: 360px) {
            .hero-title {
                font-size: 2rem;
                line-height: 1.1;
            }

            .hero-title .gd-outline {
                font-size: 1.6rem;
                -webkit-text-stroke: 1.5px #00ffff;
            }
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        .hero-subtitle {
            font-size: 1.6rem;
            color: #a3d5ff;
            max-width: 700px;
            margin: 0 auto 40px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            padding: 0 20px;
            line-height: 1.6;
            text-shadow: 0 2px 10px rgba(0, 100, 255, 0.3);
        }

        @media (max-width: 768px) {
            .hero-subtitle {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .hero-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }
        }

        @media (max-width: 360px) {
            .hero-subtitle {
                font-size: 1rem;
                padding: 0 10px;
                line-height: 1.4;
            }
        }

        .btn-primary {
            display: inline-block;
            padding: 22px 50px;
            background: linear-gradient(135deg, #0066ff, #00ccff);
            color: white;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            border-radius: 60px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 1.5px;
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        @media (max-width: 768px) {
            .btn-primary {
                padding: 20px 45px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .btn-primary {
                padding: 18px 35px;
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 360px) {
            .btn-primary {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

        .btn-primary:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.7);
            background: linear-gradient(135deg, #0088ff, #00ffff);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        #nominees .section-title {
            display: flex;
            justify-content: center;
        }

        #nominees .gd-title {
            text-align: center;
        }

        .gd-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.2rem;
            color: #00ffff;
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
            text-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
        }

        @media (max-width: 768px) {
            .gd-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .gd-title {
                font-size: 2rem;
            }
        }

        .gd-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background: linear-gradient(90deg, #00ffff, #0088ff, #00ffff);
            border-radius: 3px;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .section-subtitle {
            text-align: center;
            color: #a3d5ff;
            font-size: 1.3rem;
            margin-bottom: 40px;
            font-family: 'Rajdhani', sans-serif;
            padding: 0 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .voting-info {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .info-alert {
            background: linear-gradient(135deg, rgba(0, 100, 255, 0.25), rgba(0, 200, 255, 0.25));
            border-left: 6px solid #00ffff;
            border-radius: 15px;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            color: #00ffff;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0, 100, 255, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .info-alert i {
            font-size: 2.2rem;
            color: #00ffff;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .info-alert strong {
            color: #00ffaa;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
        }

        .category-block {
            margin-bottom: 60px;
            width: 100%;
        }

        .category-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.3rem;
            color: #00ffaa;
            margin-bottom: 30px;
            padding: 0 40px 15px;
            border-bottom: 3px solid rgba(0, 255, 170, 0.4);
            display: flex;
            align-items: center;
            gap: 20px;
            text-shadow: 0 3px 15px rgba(0, 255, 170, 0.3);
        }

        @media (max-width: 768px) {
            .category-name {
                font-size: 1.8rem;
                padding: 0 15px 15px;
            }
        }

        @media (max-width: 480px) {
            .category-name {
                font-size: 1.5rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 0 10px 12px;
            }

            .category-name i {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 360px) {
            .category-name {
                font-size: 1.3rem;
                padding: 0 8px 10px;
            }

            .category-name i {
                font-size: 1.5rem;
            }
        }

        .category-name i {
            font-size: 2.2rem;
            color: #00ffaa;
            text-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
        }

        .nominees-container {
            position: relative;
            overflow: hidden;
            padding: 0;
            width: 100%;
            max-width: 100vw;
            margin: 0;
        }

        .scroll-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
            padding: 0 30px;
        }

        .scroll-btn {
            background: linear-gradient(135deg, rgba(0, 200, 255, 0.2), rgba(0, 255, 255, 0.2));
            border: 3px solid #00ffff;
            color: #00ffff;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.8rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: all;
            box-shadow: 
                0 0 25px rgba(0, 255, 255, 0.6),
                0 0 50px rgba(0, 200, 255, 0.3),
                inset 0 0 20px rgba(0, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            z-index: 20;
            position: relative;
            transform: scale(1);
        }

        .scroll-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.4), transparent);
            transition: all 0.4s ease;
        }

        .scroll-btn:hover {
            background: linear-gradient(135deg, #00ffff, #00ccff);
            color: #0c1027;
            transform: scale(1.15) rotate(5deg);
            box-shadow: 
                0 0 40px rgba(0, 255, 255, 0.9),
                0 0 80px rgba(0, 200, 255, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
            border-color: #00ffff;
        }

        .scroll-btn:hover::before {
            width: 100px;
            height: 100px;
        }

        .scroll-btn:active {
            transform: scale(1.05);
        }

        .scroll-btn.hidden {
            display: none !important;
        }

        .scroll-btn i {
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8));
        }

        .scroll-btn-left {
            margin-left: 0;
        }

        .scroll-btn-right {
            margin-right: 0;
        }

        @media (max-width: 768px) {
            .scroll-controls {
                display: flex;
                padding: 0 15px;
            }

            .scroll-btn {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }

            .scroll-btn-left {
                margin-left: 0;
            }

            .scroll-btn-right {
                margin-right: 0;
            }

            .nominees-grid {
                padding: 25px 30px 90px;
                gap: 25px;
            }

            .nominees-grid::-webkit-scrollbar {
                height: 24px;
            }

            .nominees-grid::-webkit-scrollbar-track {
                margin: 0 30px;
            }
        }

        @media (max-width: 480px) {
            .nominees-grid {
                padding: 20px 15px 80px;
                gap: 20px;
            }

            .nominees-grid::-webkit-scrollbar {
                height: 20px;
            }

            .nominees-grid::-webkit-scrollbar-track {
                margin: 0 15px;
            }
        }

        @media (max-width: 360px) {
            .nominees-grid {
                padding: 15px 10px 75px;
                gap: 15px;
            }

            .nominees-grid::-webkit-scrollbar {
                height: 18px;
            }

            .nominees-grid::-webkit-scrollbar-track {
                margin: 0 10px;
            }
        }

        .nominees-grid {
            display: flex;
            gap: 25px;
            padding: 30px 40px 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            position: relative;
            scrollbar-width: auto;
            scrollbar-color: #00ffff rgba(20, 25, 60, 0.8);
            width: 100%;
        }

        .nominees-grid::-webkit-scrollbar {
            height: 28px;
        }

        .nominees-grid::-webkit-scrollbar-track {
            background: linear-gradient(90deg, 
                rgba(20, 25, 60, 0.8) 0%, 
                rgba(20, 25, 60, 0.6) 50%, 
                rgba(20, 25, 60, 0.8) 100%);
            border-radius: 18px;
            margin: 0 40px;
            border: 3px solid rgba(0, 200, 255, 0.3);
            box-shadow: 
                inset 0 4px 20px rgba(0, 0, 0, 0.4),
                0 0 25px rgba(0, 200, 255, 0.2);
        }

        .nominees-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, 
                #0066ff 0%, 
                #00ccff 30%,
                #00ffff 50%,
                #00ccff 70%,
                #0066ff 100%);
            border-radius: 18px;
            border: 4px solid rgba(0, 255, 255, 0.4);
            position: relative;
            min-width: 140px;
            box-shadow: 
                0 0 25px rgba(0, 255, 255, 0.9),
                0 0 50px rgba(0, 200, 255, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .nominees-grid::-webkit-scrollbar-thumb::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.4) 50%, 
                transparent 100%);
            border-radius: 15px;
            animation: scrollbar-shine 2.5s infinite;
        }

        @keyframes scrollbar-shine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .nominees-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, 
                #0088ff 0%, 
                #00ffff 30%,
                #00ccff 50%,
                #00ffff 70%,
                #0088ff 100%);
            box-shadow: 
                0 0 30px rgba(0, 255, 255, 1),
                0 0 60px rgba(0, 200, 255, 0.6),
                inset 0 0 20px rgba(255, 255, 255, 0.4);
            border-color: rgba(0, 255, 255, 0.7);
            transform: scaleY(1.1);
        }

        .nominees-grid::-webkit-scrollbar-thumb:active {
            background: linear-gradient(90deg, 
                #00ffff 0%, 
                #00ccff 30%,
                #0066ff 50%,
                #00ccff 70%,
                #00ffff 100%);
            box-shadow: 
                0 0 40px rgba(0, 255, 255, 1),
                inset 0 0 25px rgba(255, 255, 255, 0.5);
        }

        .nominee-card {
            background: linear-gradient(135deg, 
                rgba(20, 25, 60, 0.9) 0%, 
                rgba(25, 30, 70, 0.85) 100%);
            border-radius: 20px;
            padding: 28px 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(0, 200, 255, 0.3);
            backdrop-filter: blur(15px);
            width: 300px;
            min-width: 300px;
            max-width: 300px;
            flex: 0 0 300px;
            display: flex;
            flex-direction: column;
            box-shadow: 
                0 15px 40px rgba(0, 100, 255, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 480px) {
            .nominee-card {
                width: 270px;
                min-width: 270px;
                max-width: 270px;
                flex: 0 0 270px;
                padding: 22px 20px;
            }
        }

        .nominee-card:hover {
            transform: translateY(-15px) scale(1.03);
            border-color: #00ffff;
            box-shadow: 
                0 25px 60px rgba(0, 255, 255, 0.5),
                0 10px 30px rgba(0, 200, 255, 0.3),
                inset 0 0 30px rgba(0, 255, 255, 0.1);
            background: linear-gradient(135deg, 
                rgba(25, 30, 70, 0.95) 0%, 
                rgba(30, 35, 80, 0.9) 100%);
        }

        .nominee-card:hover .vote-progress-bar {
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
        }

        .nominee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: 0.6s;
        }

        .nominee-card:hover::before {
            left: 100%;
        }

        .nominee-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ffff, #0088ff, #00ffff);
            border-radius: 27px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .nominee-card:hover::after {
            opacity: 0.3;
        }

        .nominee-avatar {
            width: 140px;
            height: 140px;
            border-radius: 18px;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid #00ffff;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
            position: relative;
            transition: all 0.3s ease;
        }

        .nominee-avatar a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .category-block.rectangular-cards .nominee-card {
            width: 500px;
            min-width: 500px;
            max-width: 500px;
            flex: 0 0 500px;
            display: flex;
            flex-direction: row;
            padding: 25px;
            align-items: flex-start;
            gap: 20px;
        }

        .category-block.rectangular-cards .nominee-avatar {
            width: 240px;
            height: 180px;
            margin: 0;
            flex-shrink: 0;
            border-radius: 15px;
        }

        .category-block.rectangular-cards .nominee-avatar a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .category-block.rectangular-cards .nominee-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .category-block.rectangular-cards .nominee-content {
            flex: 1;
            text-align: left;
            margin-bottom: 0;
            display: flex;
            flex-direction: column;
            min-height: 180px;
        }

        .category-block.rectangular-cards .nominee-content h4 {
            text-align: left;
            margin-bottom: 10px;
        }

        .category-block.rectangular-cards .nominee-author {
            text-align: left;
            margin-bottom: 12px;
        }

        .category-block.rectangular-cards .nominee-stats {
            justify-content: flex-start;
            margin-bottom: 12px;
        }

        .category-block.rectangular-cards .nominee-description {
            text-align: left;
            margin-bottom: 15px;
            min-height: auto;
            flex: 1;
        }

        .category-block.rectangular-cards .vote-section {
            border-top: none;
            border-left: none;
            padding-top: 0;
            padding-left: 0;
            margin-left: 0;
            margin-top: auto;
            width: 100%;
            align-items: flex-start;
        }

        .category-block.rectangular-cards .vote-btn {
            width: 100%;
        }

        .showcase-btn {
            margin-top: 10px;
            padding: 12px 20px;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            width: 100%;
            min-height: 50px;
            height: 50px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
        }

        .showcase-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 51, 102, 0.5);
            background: linear-gradient(135deg, #ff9966, #ff3366);
        }

        .showcase-btn i {
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .category-block.rectangular-cards .nominee-card {
                flex-direction: column;
                width: 300px;
                min-width: 300px;
                max-width: 300px;
                flex: 0 0 300px;
            }

            .category-block.rectangular-cards .nominee-avatar {
                width: 100%;
                height: 200px;
                margin: 0 0 20px 0;
            }

            .category-block.rectangular-cards .nominee-content {
                text-align: center;
                min-height: auto;
            }

            .category-block.rectangular-cards .nominee-content h4,
            .category-block.rectangular-cards .nominee-author,
            .category-block.rectangular-cards .nominee-description {
                text-align: center;
            }

            .category-block.rectangular-cards .nominee-stats {
                justify-content: center;
            }

            .category-block.rectangular-cards .vote-section {
                border-top: 2px solid rgba(0, 200, 255, 0.2);
                padding-top: 20px;
                margin-top: 20px;
            }
        }

        .category-block:nth-child(9) .nominee-avatar,
        .category-block:nth-child(10) .nominee-avatar,
        .category-block:nth-child(11) .nominee-avatar {
            width: 170px;
            height: 170px;
        }

        .nominee-card:hover .nominee-avatar {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.9);
        }

        .avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .nominee-card:hover .avatar-img {
            transform: scale(1.1);
        }

        .nominee-content {
            text-align: center;
            margin-bottom: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .nominee-content h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            color: #00ffff;
            margin-bottom: 8px;
            word-break: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            text-shadow: 0 3px 15px rgba(0, 255, 255, 0.3);
        }

        .nominee-author {
            color: #88ffff;
            font-size: 0.95rem;
            margin-bottom: 15px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            padding: 6px 12px;
            background: rgba(0, 200, 255, 0.1);
            border-radius: 18px;
            display: inline-block;
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
            hyphens: auto;
        }

        .nominee-stats {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .nominee-stats .stat {
            background: rgba(0, 200, 255, 0.15);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #00ffff;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .nominee-stats .stat:hover {
            background: rgba(0, 200, 255, 0.25);
            transform: translateY(-3px);
        }

        .nominee-stats .stat i {
            font-size: 0.9rem;
            color: #00ffff;
        }

        .nominee-description {
            color: #cce7ff;
            font-size: 0.9rem;
            line-height: 1.5;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            border-left: 3px solid rgba(0, 200, 255, 0.3);
            font-family: 'Exo 2', sans-serif;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            flex: 1;
        }

        .vote-section {
            border-top: 2px solid rgba(0, 200, 255, 0.2);
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: auto;
        }

        .vote-counter {
            width: 100%;
            margin-bottom: 10px;
            display: none; 
        }

        .vote-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-family: 'Rajdhani', sans-serif;
        }

        .vote-count {
            color: #00ffff;
            font-size: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vote-count i {
            font-size: 0.9rem;
        }

        .vote-percent {
            color: #00ffaa;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
        }

        .vote-progress {
            width: 100%;
            height: 8px;
            background: rgba(0, 200, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(0, 200, 255, 0.2);
        }

        .vote-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #0066ff, #00ccff, #00ffff);
            border-radius: 10px;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        .vote-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: progress-shine 2s infinite;
        }

        @keyframes progress-shine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .vote-btn {
            padding: 15px 35px;
            background: linear-gradient(135deg, #0066ff, #00ccff);
            color: white;
            border: none;
            border-radius: 30px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            touch-action: manipulation;
            min-height: 50px;
            height: 50px;
            width: 100%;
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vote-btn:hover:not(.voted):not(.disabled) {
            background: linear-gradient(135deg, #0088ff, #00ffff);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 136, 255, 0.5);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .vote-btn.voted {
            background: linear-gradient(135deg, #00cc66, #00ff88);
            cursor: default;
            box-shadow: 0 10px 25px rgba(0, 204, 102, 0.3);
        }

        .vote-btn.disabled {
            background: linear-gradient(135deg, #666, #888);
            cursor: not-allowed;
            opacity: 0.6;
            box-shadow: none;
        }

        #rules .section-title {
            display: flex;
            justify-content: center;
            text-align: center;
        }

        #rules .gd-title {
            text-align: center;
        }

        #rules > .container {
            max-width: 100%;
            padding: 0;
            width: 100%;
        }

        .rules-container {
            position: relative;
            overflow: hidden;
            padding: 0;
            width: 100%;
            max-width: 100vw;
        }

        .rules-scroll-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
            padding: 0 40px;
        }

        .rules-scroll-btn {
            background: linear-gradient(135deg, rgba(0, 200, 255, 0.2), rgba(0, 255, 255, 0.2));
            border: 3px solid #00ffaa;
            color: #00ffaa;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            pointer-events: all;
            box-shadow: 
                0 0 25px rgba(0, 255, 170, 0.6),
                0 0 50px rgba(0, 255, 170, 0.3);
            backdrop-filter: blur(15px);
            z-index: 20;
        }

        .rules-scroll-btn:hover {
            background: linear-gradient(135deg, #00ffaa, #00ffff);
            color: #0c1027;
            transform: scale(1.15);
            box-shadow: 
                0 0 35px rgba(0, 255, 170, 0.9),
                0 0 70px rgba(0, 255, 170, 0.5);
        }

        .rules-scroll-btn-left {
            margin-left: -25px;
        }

        .rules-scroll-btn-right {
            margin-right: -25px;
        }

        @media (max-width: 768px) {
            .rules-scroll-controls {
                display: flex;
                padding: 0 15px;
            }

            .rules-scroll-btn {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .rules-scroll-btn-left {
                margin-left: 0;
            }

            .rules-scroll-btn-right {
                margin-right: 0;
            }

            .rules-grid {
                padding: 30px 30px 90px;
            }

            .rules-grid::-webkit-scrollbar {
                height: 24px;
            }

            .rules-grid::-webkit-scrollbar-track {
                margin: 0 30px;
            }

            .rule-card {
                width: 280px;
                min-width: 280px;
                max-width: 280px;
                flex: 0 0 280px;
                padding: 25px 20px;
            }
        }

        .rules-grid {
            display: flex;
            gap: 30px;
            padding: 30px 40px 100px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: auto;
            scrollbar-color: #00ffaa rgba(20, 25, 60, 0.8);
            -webkit-overflow-scrolling: touch;
            position: relative;
            width: 100%;
        }

        .rules-grid::-webkit-scrollbar {
            height: 28px;
        }

        .rules-grid::-webkit-scrollbar-track {
            background: linear-gradient(90deg, 
                rgba(20, 25, 60, 0.8) 0%, 
                rgba(20, 25, 60, 0.6) 50%, 
                rgba(20, 25, 60, 0.8) 100%);
            border-radius: 18px;
            margin: 0 40px;
            border: 3px solid rgba(0, 255, 170, 0.3);
            box-shadow: 
                inset 0 4px 20px rgba(0, 0, 0, 0.4),
                0 0 25px rgba(0, 255, 170, 0.2);
        }

        .rules-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, 
                #00ffaa 0%, 
                #00ffff 30%,
                #00ffaa 50%,
                #00ffff 70%,
                #00ffaa 100%);
            border-radius: 18px;
            border: 4px solid rgba(0, 255, 170, 0.4);
            min-width: 140px;
            box-shadow: 
                0 0 25px rgba(0, 255, 170, 0.9),
                0 0 50px rgba(0, 255, 170, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .rules-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, 
                #00ffff 0%, 
                #00ffaa 30%,
                #00ffff 50%,
                #00ffaa 70%,
                #00ffff 100%);
            box-shadow: 
                0 0 30px rgba(0, 255, 170, 1),
                0 0 60px rgba(0, 255, 170, 0.6),
                inset 0 0 25px rgba(255, 255, 255, 0.4);
            transform: scaleY(1.1);
        }

        .rule-card {
            background: rgba(20, 25, 60, 0.8);
            border-radius: 20px;
            padding: 28px 25px;
            text-align: center;
            border: 2px solid rgba(0, 200, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 40px rgba(0, 100, 255, 0.2);
            width: 300px;
            min-width: 300px;
            max-width: 300px;
            flex: 0 0 300px;
        }

        .rule-card:hover {
            border-color: #00ffff;
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 255, 255, 0.3);
        }

        .rule-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(0, 200, 255, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.8s;
        }

        .rule-card:hover::before {
            transform: translateX(100%);
        }

        .rule-icon {
            font-size: 2.5rem;
            color: #00ffff;
            margin-bottom: 20px;
            text-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
            transition: transform 0.3s ease;
        }

        .rule-card:hover .rule-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .rule-card h3 {
            color: #00ffaa;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            text-shadow: 0 3px 15px rgba(0, 255, 170, 0.3);
        }

        .rule-card p {
            color: #b3e0ff;
            line-height: 1.6;
            font-size: 0.9rem;
            font-family: 'Exo 2', sans-serif;
        }

        .timer-section {
            background: linear-gradient(135deg, rgba(0, 40, 80, 0.6), rgba(0, 80, 120, 0.6));
            padding: 100px 0;
            margin-top: 60px;
            text-align: center;
            border-top: 3px solid #00ffff;
            border-bottom: 3px solid #00ffff;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .timer-section {
                padding: 80px 0;
            }
        }

        .timer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
            animation: timer-glow-bg 10s infinite linear;
        }

        @keyframes timer-glow-bg {
            0% {
                transform: translateX(-100%) rotate(0deg);
            }

            100% {
                transform: translateX(100%) rotate(360deg);
            }
        }

        .timer-section h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            color: #00ffff;
            margin-bottom: 50px;
            padding: 0 20px;
            text-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .timer-section h3 {
                font-size: 1.9rem;
            }
        }

        .gd-timer {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .gd-timer {
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .gd-timer {
                gap: 15px;
            }
        }

        .timer-unit {
            background: rgba(10, 20, 50, 0.9);
            border-radius: 20px;
            padding: 35px 25px;
            min-width: 160px;
            border: 3px solid #00ffff;
            box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 992px) {
            .timer-unit {
                min-width: 130px;
                padding: 25px 20px;
            }
        }

        @media (max-width: 768px) {
            .timer-unit {
                min-width: 110px;
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            .timer-unit {
                min-width: 85px;
                padding: 15px 10px;
                border-width: 2px;
            }
        }

        .timer-unit::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.15) 50%, transparent 70%);
            animation: timer-glow 4s infinite linear;
        }

        @keyframes timer-glow {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .timer-number {
            display: block;
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            color: #00ffff;
            text-shadow: 0 0 25px rgba(0, 255, 255, 0.9);
            line-height: 1;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 992px) {
            .timer-number {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 768px) {
            .timer-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .timer-number {
                font-size: 2rem;
            }
        }

        .timer-label {
            display: block;
            color: #88ffff;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 15px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(136, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .timer-label {
                font-size: 0.9rem;
            }
        }

        .winners-section {
            display: none;
            padding: 60px 0;
            text-align: center;
            position: relative;
        }

        .winners-section.active {
            display: block;
        }

        .winners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 0, 0.1));
            z-index: -1;
        }

        .winner-card {
            background: rgba(20, 25, 60, 0.9);
            border-radius: 30px;
            padding: 50px 40px;
            margin: 40px auto;
            max-width: 700px;
            border: 3px solid gold;
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
        }

        .winner-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.15) 50%, transparent 70%);
            animation: winner-glow 6s infinite linear;
        }

        @keyframes winner-glow {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .winner-crown {
            font-size: 5rem;
            color: gold;
            margin-bottom: 30px;
            animation: crown-bounce 3s infinite;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
            position: relative;
            z-index: 1;
        }

        @keyframes crown-bounce {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-15px) rotate(10deg);
            }
        }

        .winner-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            color: gold;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
        }

        .winner-category {
            color: #ffff88;
            font-size: 1.3rem;
            margin-bottom: 30px;
            font-family: 'Rajdhani', sans-serif;
            position: relative;
            z-index: 1;
            padding: 10px 25px;
            background: rgba(255, 215, 0, 0.15);
            border-radius: 25px;
            display: inline-block;
        }

        .winner-stats {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 30px 0;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .winner-stat {
            background: rgba(255, 215, 0, 0.25);
            padding: 15px 25px;
            border-radius: 20px;
            color: gold;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
            min-width: 150px;
        }

        .donation-section {
            background: linear-gradient(135deg, rgba(0, 40, 80, 0.6), rgba(0, 80, 120, 0.6));
            padding: 100px 0;
            margin-top: 60px;
            text-align: center;
            border-top: 3px solid #00ffaa;
            border-bottom: 3px solid #00ffaa;
            position: relative;
            overflow: hidden;
        }

        .donation-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .donation-info {
            background: rgba(20, 25, 60, 0.8);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            border: 2px solid rgba(0, 255, 170, 0.3);
            backdrop-filter: blur(10px);
        }

        .donation-info i {
            font-size: 3rem;
            color: #ff3366;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
        }

        .donation-info p {
            color: #e6f7ff;
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .donation-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .donation-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            color: #0c1027;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 200px;
            justify-content: center;
        }

        .donation-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
        }

        .donation-btn:hover::before {
            left: 100%;
        }

        .donation-btn-primary {
            background: linear-gradient(135deg, #00ffaa, #00ffff);
            box-shadow: 0 10px 30px rgba(0, 255, 170, 0.3);
        }

        .donation-btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 255, 170, 0.5);
            background: linear-gradient(135deg, #00ffff, #00ffaa);
        }

        .donation-btn-secondary {
            background: linear-gradient(135deg, #ff3366, #ff6699);
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
        }

        .donation-btn-secondary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.5);
            background: linear-gradient(135deg, #ff6699, #ff3366);
        }

        .donation-btn i {
            font-size: 1.4rem;
        }

        .donation-note {
            color: #88ffff;
            font-size: 1.1rem;
            font-family: 'Rajdhani', sans-serif;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .donation-section {
                padding: 80px 0;
            }

            .donation-info {
                padding: 30px 20px;
            }

            .donation-info p {
                font-size: 1rem;
            }

            .donation-buttons {
                flex-direction: column;
                align-items: center;
            }

            .donation-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
                min-width: auto;
            }
        }

        .gd-footer {
            background: rgba(10, 15, 40, 0.95);
            padding: 80px 0 40px;
            border-top: 3px solid rgba(0, 200, 255, 0.4);
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .footer-logo {
                justify-content: center;
            }
        }

        .footer-logo .gd-icon {
            width: 45px;
            height: 45px;
        }

        .logo-text h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: #00ffff;
            margin-bottom: 8px;
            text-shadow: 0 3px 15px rgba(0, 255, 255, 0.3);
        }

        .logo-text p {
            color: #88ffff;
            font-size: 1rem;
            font-family: 'Rajdhani', sans-serif;
        }

        .footer-links h4,
        .social-links h4,
        .contact-info h4 {
            color: #00ffaa;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 25px;
            text-shadow: 0 3px 15px rgba(0, 255, 170, 0.3);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #b3e0ff;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            padding: 8px 0;
            font-size: 1.1rem;
            position: relative;
            padding-left: 25px;
        }

        .footer-links a:hover {
            color: #00ffff;
            transform: translateX(10px);
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .footer-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #00ffff;
            transition: transform 0.3s;
        }

        .footer-links a:hover::before {
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .social-icons {
                justify-content: center;
            }
        }

        .social-icon {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            color: #00ffff;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid transparent;
        }

        .social-icon:hover {
            background: #00ffff;
            color: #0c1027;
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 255, 255, 0.5);
            border-color: #00ffff;
        }

        .contact-email {
            margin-top: 5px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            color: #00ffff;
            text-decoration: none;
            padding: 15px 25px;
            background: rgba(0, 200, 255, 0.15);
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 255, 0.2);
            font-size: 1.1rem;
        }

        .contact-email:hover {
            background: rgba(0, 200, 255, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 200, 255, 0.3);
            border-color: rgba(0, 255, 255, 0.4);
        }

        .contact-email i {
            font-size: 1.4rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid rgba(0, 200, 255, 0.3);
            color: #88aaff;
            font-size: 1rem;
            padding: 0 20px;
            font-family: 'Exo 2', sans-serif;
        }

        .footer-bottom p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .thanks-btn {
            margin-top: 25px;
            padding: 12px 30px;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3);
            min-height: 44px;
        }

        .thanks-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 51, 102, 0.5);
        }

        .thanks-btn i {
            font-size: 1.1rem;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 15, 40, 0.98);
            backdrop-filter: blur(15px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: modal-fade 0.3s ease;
        }

        @keyframes modal-fade {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: rgba(20, 25, 60, 0.98);
            border-radius: 30px;
            padding: 50px 40px;
            max-width: 600px;
            width: 100%;
            border: 3px solid #00ffff;
            box-shadow: 0 30px 70px rgba(0, 255, 255, 0.4);
            position: relative;
            animation: modal-appear 0.5s ease;
            backdrop-filter: blur(20px);
        }

        @keyframes modal-appear {
            from {
                opacity: 0;
                transform: translateY(-60px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #00ffff;
            font-size: 2.5rem;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .modal-close:hover {
            background: rgba(0, 255, 255, 0.15);
            transform: rotate(90deg);
        }

        .modal-header h3 {
            color: #00ff88;
            text-align: center;
            margin-bottom: 30px;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            text-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
        }

        .modal-body {
            text-align: center;
            padding: 30px 0;
        }

        .modal-body p {
            font-size: 1.4rem;
            margin: 15px 0;
            color: #e6f7ff;
            font-family: 'Exo 2', sans-serif;
        }

        #selectedNominee,
        #selectedCategory {
            color: #00ffff;
            font-weight: bold;
            font-family: 'Orbitron', sans-serif;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
            font-size: 1.5rem;
        }

        .modal-icon {
            font-size: 5rem;
            color: #ff3366;
            margin: 35px 0;
            animation: heartbeat 1.5s infinite;
            text-shadow: 0 0 30px rgba(255, 51, 102, 0.5);
        }

        @keyframes heartbeat {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        .modal-thanks {
            color: #00ffaa;
            font-size: 1.6rem;
            margin-top: 25px;
            font-family: 'Orbitron', sans-serif;
            text-shadow: 0 5px 20px rgba(0, 255, 170, 0.5);
        }

        .modal-warning {
            color: #ff9966;
            font-size: 1.1rem;
            margin-top: 25px;
            padding: 20px;
            background: rgba(255, 153, 102, 0.15);
            border-radius: 15px;
            border-left: 5px solid #ff9966;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-family: 'Exo 2', sans-serif;
            border: 1px solid rgba(255, 153, 102, 0.3);
        }

        .modal-warning i {
            font-size: 1.5rem;
        }

        .modal-footer {
            text-align: center;
            margin-top: 40px;
        }

        .modal-btn {
            padding: 18px 60px;
            font-size: 1.4rem;
            font-family: 'Orbitron', sans-serif;
            border-radius: 60px;
        }

        .thanks-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .thanks-item {
            width: 100%;
        }

        .thanks-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: rgba(0, 200, 255, 0.1);
            border: 2px solid rgba(0, 200, 255, 0.3);
            border-radius: 15px;
            color: #88ffff;
            text-decoration: none;
            font-family: 'Exo 2', sans-serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .thanks-link:hover {
            background: rgba(0, 200, 255, 0.2);
            border-color: #00ffff;
            transform: translateX(5px);
            color: #00ffff;
        }

        .thanks-link i {
            font-size: 1.5rem;
            color: #00ffff;
        }

        .thanks-link span {
            flex: 1;
        }

        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 20, 50, 0.98);
                flex-direction: column;
                padding: 25px;
                border-top: 2px solid rgba(0, 200, 255, 0.3);
                backdrop-filter: blur(20px);
                z-index: 999;
                max-height: 85vh;
                overflow-y: auto;
                gap: 20px;
                box-shadow: 0 20px 50px rgba(0, 100, 255, 0.3);
                border-radius: 0 0 25px 25px;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 18px;
                font-size: 1.2rem;
                border-radius: 30px;
            }

            .menu-toggle {
                display: flex;
                order: 3;
            }

            .nav-social {
                order: 2;
            }

            .language-switcher {
                width: 100%;
                margin-top: 20px;
            }

            .language-btn {
                width: 100%;
                justify-content: center;
                padding: 15px;
                font-size: 1.1rem;
            }

            .language-dropdown {
                position: static;
                width: 100%;
                margin-top: 15px;
                border-radius: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-wrap: wrap;
            }

            .logo-container {
                order: 1;
            }

            .menu-toggle {
                order: 2;
            }

            .nav-social {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 20px;
                display: none;
            }

            .nav-menu.active~.nav-social {
                display: flex;
                position: absolute;
                top: calc(100% + 200px);
                left: 0;
                background: rgba(15, 20, 50, 0.98);
                padding: 20px;
                backdrop-filter: blur(20px);
                border-radius: 0 0 25px 25px;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                padding: 0 15px;
            }

            .vote-section {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }

            .vote-btn {
                width: 100%;
                justify-content: center;
                padding: 18px;
            }

            .vote-stats {
                font-size: 0.9rem;
            }

            .vote-count {
                font-size: 0.9rem;
            }

            .vote-percent {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .section {
                padding: 70px 0;
            }

            .nominee-card {
                width: 270px;
                min-width: 270px;
                max-width: 270px;
                flex: 0 0 270px;
                padding: 22px 20px;
            }

            .nominee-content h4 {
                font-size: 1.7rem;
            }

            .nominee-description {
                font-size: 0.95rem;
                padding: 12px;
            }

            .gd-footer {
                padding: 60px 0 30px;
            }

            .footer-content {
                gap: 40px;
            }

            .contact-email {
                font-size: 1rem;
                padding: 12px 20px;
            }

            .modal-content {
                padding: 35px 25px;
            }

            .rules-grid {
                padding: 30px 25px 85px;
            }

            .rules-grid::-webkit-scrollbar {
                height: 22px;
            }

            .rules-grid::-webkit-scrollbar-track {
                margin: 0 25px;
            }

            .rule-card {
                width: 280px;
                min-width: 280px;
                max-width: 280px;
                flex: 0 0 280px;
                padding: 25px 20px;
            }

            .rule-icon {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }

            .rule-card h3 {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }

            .rule-card p {
                font-size: 0.85rem;
            }

            .modal-btn {
                padding: 15px 40px;
                font-size: 1.2rem;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .nominee-card:active {
                transform: translateY(-10px) scale(1.02);
            }

            .btn-primary:active,
            .vote-btn:active {
                transform: translateY(-5px) scale(1.03);
            }

            .social-nav:active,
            .social-icon:active {
                transform: translateY(-5px) scale(1.05);
            }

            .nav-menu a:active {
                background: rgba(0, 200, 255, 0.2);
            }
        }

        input,
        select,
        textarea {
            font-size: 16px;
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 10px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 10px;
            }

            .nominee-card {
                width: 250px;
                min-width: 250px;
                max-width: 250px;
                flex: 0 0 250px;
                padding: 20px 15px;
            }

            .nominee-content h4 {
                font-size: 1.4rem;
            }

            .category-name {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .gd-timer {
                gap: 10px;
            }

            .timer-unit {
                min-width: 60px;
                padding: 15px 10px;
            }

            .timer-number {
                font-size: 1.8rem;
            }

            .timer-label {
                font-size: 0.7rem;
            }

            .modal-content {
                padding: 25px 15px;
                margin: 10px;
            }

            .donation-btn {
                padding: 15px 25px;
                font-size: 1rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .nominee-card {
                width: 280px;
                min-width: 280px;
                max-width: 280px;
                flex: 0 0 280px;
            }

            .nominees-grid {
                gap: 20px;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .category-name {
                font-size: 1.6rem;
            }

            .gd-timer {
                gap: 20px;
            }

            .timer-unit {
                min-width: 80px;
            }

            .rules-grid {
                gap: 25px;
            }

            .rule-card {
                width: 280px;
                min-width: 280px;
                max-width: 280px;
                flex: 0 0 280px;
            }

            .donation-buttons {
                flex-direction: row;
                justify-content: center;
            }

            .donation-btn {
                flex: 0 1 auto;
                min-width: 180px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                max-width: 95%;
            }

            .nominee-card {
                width: 290px;
                min-width: 290px;
                max-width: 290px;
                flex: 0 0 290px;
            }

            .nominees-grid {
                gap: 25px;
            }

            .hero-title {
                font-size: 4rem;
            }

            .category-block.rectangular-cards .nominee-card {
                flex-direction: row;
                max-width: 100%;
            }

            .category-block.rectangular-cards .nominee-avatar {
                width: 150px;
                height: 150px;
            }

            .gd-timer {
                gap: 30px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .category-block.rectangular-cards .nominee-card {
                flex-direction: column;
                text-align: center;
            }

            .category-block.rectangular-cards .nominee-avatar {
                width: 200px;
                height: 200px;
                margin: 0 auto 20px;
            }

            .category-block.rectangular-cards .nominee-content {
                min-height: auto;
                margin-bottom: 20px;
            }

            .category-block.rectangular-cards .vote-section {
                border-top: 2px solid rgba(0, 200, 255, 0.2);
                padding-top: 20px;
                margin-top: 20px;
                border-left: none;
                padding-left: 0;
            }

            .category-block.rectangular-cards .vote-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .category-block.rectangular-cards .nominee-avatar {
                width: 150px;
                height: 150px;
            }

            .category-block.rectangular-cards .nominee-content h4 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 90%;
                max-width: 500px;
                padding: 40px 30px;
            }

            .modal-header h3 {
                font-size: 1.8rem;
            }

            .modal-body p {
                font-size: 1rem;
            }

            .showcase-image-container {
                margin: 15px 0;
            }

            #showcaseDesignerName {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .modal-content {
                width: 95%;
                padding: 30px 20px;
            }

            .modal-header h3 {
                font-size: 1.5rem;
            }

            .modal-body p {
                font-size: 0.95rem;
            }

            .modal-btn {
                padding: 12px 30px;
                font-size: 1.1rem;
            }

            .thanks-list {
                gap: 12px;
            }

            .thanks-link {
                padding: 12px 15px;
                font-size: 0.9rem;
            }

            .thanks-link i {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 20, 50, 0.98);
                flex-direction: column;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                backdrop-filter: blur(20px);
                border-bottom: 2px solid rgba(0, 200, 255, 0.3);
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
            }

            .nav-menu a {
                display: block;
                padding: 15px 20px;
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .footer-logo {
                grid-column: 1 / -1;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-links,
            .social-links,
            .contact-info {
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 50px 0;
            }

            .section-title {
                font-size: 2rem;
                padding: 0 15px;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .scroll-btn,
            .rules-scroll-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .scroll-controls,
            .rules-scroll-controls {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .scroll-btn,
            .rules-scroll-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .scroll-controls,
            .rules-scroll-controls {
                padding: 0 10px;
            }
        }

        @media (max-width: 768px) {
            .rules-grid {
                padding: 30px 20px 80px;
            }

            .rule-card {
                width: 270px;
                min-width: 270px;
                max-width: 270px;
                flex: 0 0 270px;
                padding: 22px 20px;
            }

            .rule-icon {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .rule-card h3 {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }

            .rule-card p {
                font-size: 0.85rem;
            }

            .rules-scroll-controls {
                padding: 0 10px;
            }

            .rules-scroll-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .rules-grid {
                padding: 25px 15px 75px;
            }

            .rule-card {
                width: 260px;
                min-width: 260px;
                max-width: 260px;
                flex: 0 0 260px;
                padding: 20px 18px;
            }

            .rule-icon {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .rule-card h3 {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .rule-card p {
                font-size: 0.8rem;
                line-height: 1.5;
            }

            .rules-scroll-controls {
                padding: 0 5px;
            }

            .rules-scroll-btn {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 360px) {
            .rule-card {
                width: 240px;
                min-width: 240px;
                max-width: 240px;
                flex: 0 0 240px;
                padding: 18px 15px;
            }

            .rule-icon {
                font-size: 1.6rem;
                margin-bottom: 10px;
            }

            .rule-card h3 {
                font-size: 0.95rem;
                margin-bottom: 8px;
            }

            .rule-card p {
                font-size: 0.75rem;
                line-height: 1.4;
            }
        }

        @media (max-width: 768px) {
            .timer-section {
                padding: 60px 0;
            }

            .timer-section h3 {
                font-size: 1.6rem;
                margin-bottom: 30px;
            }

            .timer-unit {
                min-width: 70px;
                padding: 20px 15px;
            }

            .timer-number {
                font-size: 2rem;
            }

            .timer-label {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .timer-section h3 {
                font-size: 1.4rem;
                margin-bottom: 25px;
            }

            .timer-unit {
                min-width: 60px;
                padding: 15px 10px;
            }

            .timer-number {
                font-size: 1.6rem;
            }

            .timer-label {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 768px) {
            .donation-section {
                padding: 60px 0;
            }

            .donation-info {
                padding: 30px 20px;
            }

            .donation-info i {
                font-size: 2.5rem;
            }

            .donation-info p {
                font-size: 1.1rem;
            }

            .donation-btn {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .donation-section {
                padding: 50px 0;
            }

            .donation-info {
                padding: 25px 15px;
            }

            .donation-info i {
                font-size: 2rem;
            }

            .donation-info p {
                font-size: 1rem;
            }

            .donation-btn {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .nominees-container {
                padding: 0 10px;
            }

            .nominees-grid {
                gap: 20px;
            }

            .nominee-card {
                width: 280px;
                min-width: 280px;
                max-width: 280px;
                flex: 0 0 280px;
                padding: 24px 22px;
            }

            .nominee-avatar {
                width: 120px;
                height: 120px;
            }

            .nominee-content h4 {
                font-size: 1.5rem;
            }

            .nominee-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .showcase-btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .showcase-btn {
                padding: 10px 15px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .thanks-btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }

            .thanks-link {
                padding: 12px 18px;
                font-size: 1rem;
            }

            .thanks-link i {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .thanks-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                width: 100%;
                max-width: 300px;
            }

            .thanks-link {
                padding: 10px 15px;
                font-size: 0.95rem;
            }

            .thanks-link i {
                font-size: 1.2rem;
            }
        }

        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                padding-top: 120px;
                padding-bottom: 60px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section {
                padding: 40px 0;
            }

            .navbar {
                padding: 10px 0;
            }
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1200px;
            }

            .nominee-card {
                width: 320px;
                min-width: 320px;
                max-width: 320px;
                flex: 0 0 320px;
            }

            .nominees-grid {
                gap: 30px;
            }
        }

        @media (min-width: 1400px) {
            .container {
                max-width: 1400px;
            }

            .nominee-card {
                width: 340px;
                min-width: 340px;
                max-width: 340px;
                flex: 0 0 340px;
            }
        }