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

        :root {
            --gold: #FFD700;
            --gold-light: #FFE55C;
            --gold-dark: #E6C300;
            --blue: #1DA1F2;
            --dark-bg: #0A0A14;
            --dark-card: #12121F;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: white;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

/* Networks Page Specific Styles */
        .networks-main {
            min-height: 100vh;
            padding: 160px 40px 80px;
            width: 100%;
            position: relative;
            z-index: 1;
        }
        .section-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .page-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: black;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
            text-transform: uppercase;
        }
        .page-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            line-height: 1.1;
        }
        .page-title-main {
            display: block;
            background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-title-sub {
            display: block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.8rem;
            margin-top: 10px;
        }
        .page-description {
            max-width: 700px;
            font-size: 1.2rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin: 30px auto 0;
        }

        /* Networks Grid - Card Style */
        .networks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .network-card {
            background: linear-gradient(145deg, rgba(18, 18, 31, 0.9) 0%, rgba(18, 18, 31, 0.98) 100%);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 30px 25px 25px;
            backdrop-filter: blur(5px);
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px -10px rgba(0,0,0,0.6);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .network-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, var(--gold), var(--blue));
            transition: height 0.4s ease;
        }
        .network-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255,215,0,0.3);
            box-shadow: 0 25px 45px -10px rgba(255,215,0,0.2);
        }
        .network-card:hover::before {
            height: 100%;
        }
        .network-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,215,0,0.1);
            border-radius: 50%;
            border: 1px solid rgba(255,215,0,0.2);
            font-size: 2.5rem;
            color: var(--gold);
            transition: all 0.3s;
        }
        .network-card:hover .network-icon {
            background: rgba(255,215,0,0.2);
            transform: scale(1.05);
            border-color: var(--gold);
        }
        .network-name {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .network-description {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            text-align: center;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .network-contact {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 15px 0 10px;
            font-size: 0.9rem;
        }
        .network-contact a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 8px;
            border-radius: 30px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,215,0,0.1);
            transition: all 0.3s;
        }
        .network-contact a:hover {
            background: rgba(255,215,0,0.1);
            border-color: var(--gold);
            color: white;
        }
        .network-contact i {
            color: var(--gold);
            width: 20px;
        }
        .network-website {
            margin-top: 5px;
        }
        .back-section {
            margin-top: 70px;
            text-align: center;
        }
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        .back-button:hover {
            background: rgba(255,215,0,0.1);
            border-color: var(--gold);
            transform: translateX(-5px);
        }

        @media (max-width: 768px) {
            .networks-main { padding: 120px 20px 60px; }
            .page-title { font-size: 2.8rem; }
            .page-title-sub { font-size: 2.2rem; }
            .main-menu { display: none; }
            .mobile-toggle { display: block; }
        }
        @media (max-width: 480px) {
            .page-title { font-size: 2.3rem; }
            .page-title-sub { font-size: 1.8rem; }
        }

            /* Animated Background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(29, 161, 242, 0.06) 0%, transparent 50%),
                linear-gradient(135deg, #0A0A14 0%, #1A1A2E 50%, #0F0F1E 100%);
        }

        .mesh-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(29, 161, 242, 0.03) 2px, rgba(29, 161, 242, 0.03) 4px);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
            opacity: 0.1;
            animation: floatElement 15s infinite ease-in-out;
            z-index: 0;
        }

        @keyframes floatElement {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(90deg); }
            50% { transform: translate(0, -40px) rotate(180deg); }
            75% { transform: translate(-20px, -20px) rotate(270deg); }
        }