:root {
            --zynga-green: #0dbc79;
            --zynga-dark: #1a1a2e;
            --zynga-light: #f8f9fa;
            --zynga-blue: #2d8cff;
            --zynga-gradient: linear-gradient(135deg, var(--zynga-green) 0%, var(--zynga-blue) 100%);
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
            padding-top: 80px;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--zynga-dark);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--zynga-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--zynga-green) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.9)), 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: 120px 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #fff 30%, var(--zynga-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .btn-zynga {
            background: var(--zynga-gradient);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-zynga:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13, 188, 121, 0.3);
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--zynga-gradient);
            border-radius: 2px;
        }
        .card-game {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .card-game:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-game img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card-game:hover img {
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--zynga-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .team-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        .team-card:hover {
            box-shadow: 0 15px 30px rgba(13, 188, 121, 0.15);
            transform: translateY(-5px);
        }
        .team-card img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 5px solid #f1f1f1;
        }
        .contact-info-box {
            padding: 30px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            text-align: center;
            transition: all 0.3s;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(13, 188, 121, 0.15);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--zynga-green);
            margin-bottom: 20px;
        }
        footer {
            background: var(--zynga-dark);
            color: #aaa;
            padding-top: 60px;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--zynga-green);
        }
        .friendlink {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: rgba(255,255,255,0.08);
            border-radius: 6px;
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--zynga-green);
            color: white !important;
            transform: scale(1.05);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--zynga-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1000;
        }
        .back-to-top.show {
            opacity: 1;
        }
        .back-to-top:hover {
            transform: scale(1.1);
            color: white;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--zynga-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--zynga-gradient);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--zynga-green);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--zynga-green);
        }
