:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-blue: #0f4c75;
            --accent-teal: #00adb5;
            --light-bg: #eeeeee;
            --text-light: #f0f0f0;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            background-color: #fff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95) !important;
            backdrop-filter: blur(10px);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-teal) !important;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link:focus {
            color: var(--accent-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(22, 33, 62, 0.9), rgba(15, 76, 117, 0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--accent-blue), var(--accent-teal));
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 173, 181, 0.3);
            color: white;
        }
        .footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-teal);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--accent-teal);
            transform: translateY(-3px);
        }
        .friendlink-section {
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            color: #555;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
        }
        .flink:hover {
            border-color: var(--accent-teal);
            color: var(--accent-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .game-card-img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-hover:hover .game-card-img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                text-align: center;
            }
            .section-padding {
                padding: 4rem 0;
            }
        }
