:root {
            --primary-color: #0d47a1;
            --secondary-color: #ff6f00;
            --accent-color: #29b6f6;
            --dark-color: #1a237e;
            --light-color: #e3f2fd;
            --text-dark: #212121;
            --text-light: #757575;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: 76px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: var(--shadow);
            padding: 0.8rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--light-color);
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.85), 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: var(--white);
            padding: 8rem 0 6rem;
            margin-bottom: 4rem;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #e65100;
            border-color: #e65100;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .feature-card {
            background: var(--white);
            border-radius: 10px;
            padding: 2.5rem 2rem;
            height: 100%;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--accent-color);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .game-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            background: var(--white);
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .game-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        .game-content {
            padding: 1.8rem;
        }
        .stats-section {
            background-color: var(--light-color);
            padding: 5rem 0;
            margin: 5rem 0;
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stat-text {
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        .contact-info {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            height: 100%;
        }
        .contact-info a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .contact-info a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        .contact-form .form-control {
            padding: 0.9rem 1rem;
            border-radius: 6px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.25);
        }
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 4rem 0 2rem;
        }
        .footer-links h5 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bbbbbb;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 4rem 0;
            margin: 4rem 0;
        }
        .flink {
            display: inline-block;
            background: var(--white);
            padding: 1rem 2rem;
            margin: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .flink:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-5px);
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--secondary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item.active {
            color: var(--text-light);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
            }
            .nav-link {
                margin: 0.2rem 0;
            }
            body {
                padding-top: 70px;
            }
        }
        .content-section {
            margin-bottom: 5rem;
        }
        .about-img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            max-height: 500px;
            object-fit: cover;
        }
