:root {
            --primary-blue: #1a5276;
            --secondary-teal: #17a2b8;
            --accent-gold: #f39c12;
            --deep-ocean: #154360;
            --coral-pink: #e74c3c;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
        }
        .logo-brand {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-blue);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
            color: var(--deep-ocean) !important;
        }
        .nav-link:hover {
            color: var(--secondary-teal) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(23, 162, 184, 0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--primary-blue);
            border-left: 5px solid var(--accent-gold);
            padding-left: 15px;
            margin: 40px 0 25px;
        }
        .content-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 25px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--secondary-teal);
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .key-feature {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background-color: rgba(243, 156, 18, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
        }
        footer {
            background-color: var(--deep-ocean);
            color: white;
            padding: 40px 0 20px;
        }
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: white;
            transition: color 0.3s ease;
        }
        .social-icon:hover {
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .logo-brand {
                font-size: 1.4rem;
            }
        }
