:root {
            --zynk-primary: #6a11cb;
            --zynk-secondary: #2575fc;
            --zynk-dark: #1a1a2e;
            --zynk-light: #f8f9fa;
            --zynk-accent: #ff6b6b;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--zynk-primary), var(--zynk-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--zynk-dark) 0%, #16213e 100%);
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(106,17,203,0.05)"/></svg>');
            background-size: cover;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--zynk-primary), var(--zynk-secondary));
            border-radius: 2px;
        }
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
        }
        .btn-zynk {
            background: linear-gradient(90deg, var(--zynk-primary), var(--zynk-secondary));
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-zynk:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106,17,203,0.3);
            color: white;
        }
        .game-card img {
            transition: transform 0.5s ease;
            height: 200px;
            object-fit: cover;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .flink {
            display: inline-block;
            background: var(--zynk-light);
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            color: var(--zynk-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .flink:hover {
            background: linear-gradient(90deg, var(--zynk-primary), var(--zynk-secondary));
            color: white;
            transform: translateY(-3px);
            border-color: transparent;
        }
        .friendlink {
            background-color: #f8f9fa;
            border-top: 1px solid #eaeaea;
            border-bottom: 1px solid #eaeaea;
        }
        footer {
            background-color: var(--zynk-dark);
            color: #ccc;
        }
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(106, 17, 203, 0.05);
            color: var(--zynk-primary);
            font-weight: 600;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--zynk-primary), var(--zynk-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .gradient-bg {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
