:root {
            --primary: #1a237e;
            --primary-light: #534bae;
            --primary-dark: #000051;
            --secondary: #ff6f00;
            --secondary-light: #ffa040;
            --secondary-dark: #c43e00;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .navbar {
            background-color: rgba(26, 35, 126, 0.95) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-light) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            color: var(--primary);
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-secondary:hover {
            background-color: var(--secondary-dark);
            border-color: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 111, 0, 0.2);
        }
        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .friendlink .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        .friendlink .flink:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        .game-showcase {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .sticky-top {
            top: 20px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .navbar-nav {
                text-align: center;
                background-color: var(--primary);
                border-radius: 10px;
                padding: 1rem;
            }
        }
