 @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&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: '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;
        }

        .store-notice {
            max-width: 800px;
            margin: 0 auto 40px;
            padding: 20px 30px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            text-align: center;
        }

        .store-notice i {
            font-size: 1.5em;
            color: #FFD700;
            margin-right: 10px;
        }

        .store-notice p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1em;
            display: inline;
        }

        .store-section {
            padding: 80px 100px;
            background: linear-gradient(180deg, #0a0a05 0%, #0f0f0a 100%);
        }

        .ranks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .rank-card {
            background: linear-gradient(145deg, rgba(20, 15, 5, 0.9) 0%, rgba(10, 5, 0, 0.9) 100%);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .rank-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
        }

        .rank-card.vip {
            border-color: rgba(46, 204, 113, 0.4);
        }

        .rank-card.vip:hover {
            box-shadow: 0 30px 60px rgba(46, 204, 113, 0.2);
        }

        .rank-card.mvp {
            border-color: rgba(255, 215, 0, 0.4);
        }

        .rank-card.mvp:hover {
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
        }

        .rank-card.elite {
            border-color: rgba(0, 234, 255, 0.4);
        }

        .rank-card.elite:hover {
            box-shadow: 0 30px 60px rgba(0, 200, 255, 0.2);
        }

        .rank-card.legend {
            border-color: rgba(255, 0, 255, 0.4);
        }

        .rank-card.legend:hover {
            box-shadow: 0 30px 60px rgba(255, 0, 238, 0.3);
        }

        .rank-card.ultimate {
            border-color: rgba(231, 76, 60, 0.4);
        }

        .rank-card.ultimate:hover {
            box-shadow: 0 30px 60px rgba(231, 76, 60, 0.2);
        }

        .rank-header {
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .rank-card.vip .rank-header {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, transparent 100%);
        }

        .rank-card.mvp .rank-header {
            background: linear-gradient(135deg, rgba(225, 255, 0, 0.2) 0%, transparent 100%);
        }

        .rank-card.elite .rank-header {
            background: linear-gradient(135deg, rgba(0, 187, 255, 0.2) 0%, transparent 100%);
        }

        .rank-card.legend .rank-header {
            background: linear-gradient(135deg, rgba(255, 0, 230, 0.2) 0%, transparent 100%);
        }

        .rank-card.ultimate .rank-header {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, transparent 100%);
        }

        .rank-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: #fff;
        }

        .rank-card.vip .rank-icon {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
        }

        .rank-card.mvp .rank-icon {
            background: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }

        .rank-card.elite .rank-icon {
            background: linear-gradient(135deg, #00c8ff 0%, #00c8ff 100%);
            box-shadow: 0 10px 30px rgba(0, 221, 255, 0.4);
        }

        .rank-card.legend .rank-icon {
            background: linear-gradient(135deg, #ff00f2 0%, #ff00f2 100%);
            box-shadow: 0 10px 30px rgba(255, 0, 212, 0.4);
            color: #000;
        }

        .rank-card.ultimate .rank-icon {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
        }

        .rank-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .rank-card.vip .rank-name {
            color: #2ecc71;
        }

        .rank-card.mvp .rank-name {
            color: #FFD700;
        }

        .rank-card.elite .rank-name {
            color: #00c8ff;
        }

        .rank-card.legend .rank-name {
            color: #ff00f2;
        }

        .rank-card.ultimate .rank-name {
            color: #e74c3c;
        }

        .rank-price {
            font-size: 2.5em;
            font-weight: 800;
            color: #fff;
        }

        .rank-price span {
            font-size: 0.5em;
            color: rgba(255, 255, 255, 0.5);
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 5px 15px;
            background: linear-gradient(135deg, #ff00f2 0%, #ff00f2 100%);
            color: #000;
            font-size: 0.75em;
            font-weight: 700;
            border-radius: 20px;
        }

        .rank-features {
            padding: 30px;
        }

        .rank-features ul {
            list-style: none;
        }

        .rank-features li {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95em;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .rank-features li:last-child {
            border-bottom: none;
        }

        .rank-features li i {
            width: 20px;
            text-align: center;
        }

        .rank-card.vip .rank-features li i {
            color: #2ecc71;
        }

        .rank-card.mvp .rank-features li i {
            color: #fbff00;
        }

        .rank-card.elite .rank-features li i {
            color: #00c8ff;
        }

        .rank-card.legend .rank-features li i {
            color: #ff00f2;
        }

        .rank-card.ultimate .rank-features li i {
            color: #e74c3c;
        }

        .rank-footer {
            padding: 0 30px 30px;
        }

        .buy-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 18px;
            border: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .rank-card.vip .buy-btn {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
        }

        .rank-card.mvp .buy-btn {
            background: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .rank-card.elite .buy-btn {
            background: linear-gradient(135deg, #00c8ff 0%, #00c8ff 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(0, 221, 255, 0.3);
        }

        .rank-card.legend .buy-btn {
            background: linear-gradient(135deg, #ff00f2 0%, #ff00f2 100%);
            color: #000;
            box-shadow: 0 10px 30px rgba(255, 0, 238, 0.3);
        }

        .rank-card.ultimate .buy-btn {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
        }

        .buy-btn:hover {
            transform: translateY(-3px) scale(1.02);
        }

        .rank-card.vip .buy-btn:hover {
            box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
        }

        .rank-card.mvp .buy-btn:hover {
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        }

        .rank-card.elite .buy-btn:hover {
            box-shadow: 0 15px 40px rgba(0, 195, 255, 0.5);
        }

        .rank-card.legend .buy-btn:hover {
            box-shadow: 0 15px 40px rgba(255, 0, 225, 0.5);
        }

        .rank-card.ultimate .buy-btn:hover {
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
        }

        /* Footer */
        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,
            .store-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;
            }

            .ranks-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }