    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Tajawal', 'Poppins', sans-serif;
            background: #0a0a05;
            overflow-x: hidden;
            min-height: 100vh;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a05;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #FFD700, #B8860B);
            border-radius: 10px;
        }
         .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a05;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loading-screen.hide {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            width: 150px;
            height: 150px;
            animation: logoFloat 2s ease-in-out infinite;
        }

        .loading-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .loading-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            margin-top: 30px;
            overflow: hidden;
        }

        .loading-progress {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
            background-size: 200% 100%;
            border-radius: 10px;
            animation: loadingAnim 2s ease-in-out forwards, shimmer 1s linear infinite;
        }

        @keyframes loadingAnim {
            to { width: 100%; }
        }

        @keyframes shimmer {
            to { background-position: -200% 0; }
        }

        .loading-text {
            color: #FFD700;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2em;
            margin-top: 20px;
            letter-spacing: 3px;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 5, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 100px;
            background: rgba(10, 10, 5, 0.98);
            box-shadow: 0 5px 30px rgba(255, 215, 0, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #FFD700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6em;
            font-weight: 700;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            font-size: 0.95em;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::before,
        .nav-menu a.active::before {
            width: 60%;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #FFD700;
        }

        .nav-menu a i {
            margin-right: 8px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #FFD700;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .page-header {
            padding: 150px 100px 80px;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at center, #1a1a0a 0%, #0a0a05 70%);
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.3"/></svg>') repeat;
            background-size: 50px 50px;
            opacity: 0.5;
        }

        .page-header h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5em;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 0%, #FFD700 50%, #FFA500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2em;
            position: relative;
            z-index: 1;
        }

        .page-header > i {
            font-size: 4em;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .vote-section {
            padding: 80px 100px;
            background: linear-gradient(180deg, #0a0a05 0%, #0f0f0a 100%);
        }

        .vote-info {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .vote-info h2 {
            font-family: 'Tajawal', sans-serif;
            font-size: 2.2em;
            color: #FFD700;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .vote-info > p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .notes-box {
            background: linear-gradient(145deg, rgba(255, 215, 0, 0.1) 0%, rgba(20, 15, 5, 0.8) 100%);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 30px;
            text-align: left;
            margin-top: 30px;
        }

        .notes-box h3 {
            color: #FFD700;
            font-size: 1.3em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .notes-box h3 i {
            font-size: 1.2em;
        }

        .notes-box ul {
            list-style: none;
            padding: 0;
        }

        .notes-box li {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.05em;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .notes-box li:last-child {
            border-bottom: none;
        }

        .notes-box li i {
            color: #FFD700;
            font-size: 0.9em;
        }

        .notes-box li code {
            background: rgba(255, 215, 0, 0.2);
            padding: 2px 10px;
            border-radius: 5px;
            color: #FFD700;
            font-family: monospace;
            font-size: 1.1em;
        }

        .vote-rewards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto 60px;
        }

        .reward-card {
            background: linear-gradient(145deg, rgba(255, 215, 0, 0.1) 0%, rgba(20, 15, 5, 0.8) 100%);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .reward-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 215, 0, 0.5);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }

        .reward-card i {
            font-size: 2.5em;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .reward-card h3 {
            color: #fff;
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .reward-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95em;
        }

        .vote-sites {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 900px;
            margin: 0 auto;
        }

        .vote-card {
            background: linear-gradient(165deg, rgba(30, 25, 10, 0.95) 0%, rgba(15, 10, 5, 0.98) 100%);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 16px;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .vote-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #FFD700, #FFA500, #FFD700);
            opacity: 0.8;
        }

        .vote-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
            transition: left 0.7s ease;
        }

        .vote-card:hover::after {
            left: 100%;
        }

        .vote-card:hover {
            transform: translateX(10px);
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: 
                0 10px 40px rgba(255, 215, 0, 0.15),
                0 0 30px rgba(255, 215, 0, 0.1),
                inset 0 1px 0 rgba(255, 215, 0, 0.2);
        }

        .vote-card .site-number-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #8B6914 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4em;
            font-weight: 900;
            color: #000;
            box-shadow: 
                0 5px 20px rgba(255, 215, 0, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
        }

        .vote-card:hover .site-number-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 
                0 8px 25px rgba(255, 215, 0, 0.5),
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
        }

        .vote-card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .vote-card h3 {
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1em;
            margin: 0;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .vote-card:hover h3 {
            color: #FFD700;
        }

        .vote-card-content p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85em;
            margin: 0;
        }

        .vote-card-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .vote-status {
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8em;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .vote-card:hover .vote-status {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.05));
            border-color: rgba(255, 215, 0, 0.25);
        }

        .vote-status i {
            color: #FFD700;
            font-size: 0.9em;
        }

        .vote-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
            color: #000;
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 5px 20px rgba(255, 215, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .vote-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: left 0.5s ease;
        }

        .vote-btn:hover::before {
            left: 100%;
        }

        .vote-btn:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 10px 30px rgba(255, 215, 0, 0.45),
                inset 0 2px 4px rgba(255, 255, 255, 0.4);
            background: linear-gradient(135deg, #FFE44D 0%, #FFD700 50%, #DAA520 100%);
        }

        .vote-btn i {
            transition: transform 0.3s ease;
        }

        .vote-btn:hover i {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .vote-card {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
                gap: 15px;
            }

            .vote-card::before {
                top: 0;
                left: 0;
                right: 0;
                bottom: auto;
                width: 100%;
                height: 4px;
            }

            .vote-card-actions {
                flex-direction: column;
                width: 100%;
                gap: 12px;
            }

            .vote-btn {
                width: 100%;
                justify-content: center;
            }

            .vote-status {
                width: 100%;
                justify-content: center;
            }
        }

        footer {
            background: linear-gradient(180deg, #0a0a05 0%, #000 100%);
            padding: 60px 100px 30px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid #FFD700;
            object-fit: cover;
        }

        .footer-text h3 {
            font-family: 'Orbitron', sans-serif;
            color: #fff;
            font-size: 1.3em;
        }

        .footer-text p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9em;
        }

        .footer-links {
            display: flex;
            gap: 15px;
        }

        .footer-links a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            color: #fff;
            font-size: 1.2em;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-links a:hover {
            background: #FFD700;
            color: #000;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9em;
        }

        .footer-bottom span {
            color: #FFD700;
        }

        @media (max-width: 1024px) {
            header {
                padding: 15px 30px;
            }

            .page-header,
            .vote-section {
                padding: 100px 30px 60px;
            }

            footer {
                padding: 50px 30px 25px;
            }

            .page-header h1 {
                font-size: 2.5em;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 5, 0.98);
                flex-direction: column;
                padding: 30px 20px;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 15px;
            }

            .menu-toggle {
                display: flex;
            }

            .page-header h1 {
                font-size: 2em;
            }

            .vote-sites {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .notes-box {
                padding: 20px;
            }

            .notes-box li {
                font-size: 0.95em;
            }
        }