:root {
            --ubisoft-blue: #0077cc;
            --ubisoft-dark: #0a1428;
            --ubisoft-red: #ff0000;
            --ubisoft-light: #f8f9fa;
            --ubisoft-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        .ubisoft-bg-dark {
            background-color: var(--ubisoft-dark) !important;
        }
        .ubisoft-bg-blue {
            background-color: var(--ubisoft-blue) !important;
        }
        .text-ubisoft-blue {
            color: var(--ubisoft-blue) !important;
        }
        .text-ubisoft-red {
            color: var(--ubisoft-red) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 20, 40, 0.85), rgba(10, 20, 40, 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;
            background-size: cover;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--ubisoft-blue);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .game-card {
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background-color: white;
            border: none;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .game-card-img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover .game-card-img {
            transform: scale(1.05);
        }
        .career-card {
            border-left: 4px solid var(--ubisoft-blue);
            transition: all 0.3s ease;
        }
        .career-card:hover {
            background-color: rgba(0, 119, 204, 0.05);
            transform: translateX(5px);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .flink:hover {
            background-color: var(--ubisoft-blue);
            color: white;
            transform: translateY(-3px);
            border-color: var(--ubisoft-blue);
        }
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background-color: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(10px);
        }
        .navbar.scrolled {
            padding: 0.7rem 0;
            background-color: rgba(10, 20, 40, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            color: #eee !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--ubisoft-blue);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .btn-ubisoft {
            background-color: var(--ubisoft-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--ubisoft-blue);
        }
        .btn-ubisoft:hover {
            background-color: transparent;
            color: var(--ubisoft-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 119, 204, 0.2);
        }
        .btn-ubisoft-outline {
            background-color: transparent;
            color: var(--ubisoft-blue);
            border: 2px solid var(--ubisoft-blue);
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-ubisoft-outline:hover {
            background-color: var(--ubisoft-blue);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: #0a0f1f;
            color: #aaa;
            padding-top: 4rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .footer-bottom {
            background-color: #050913;
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--ubisoft-blue);
            transform: translateY(-5px);
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--ubisoft-blue);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 20px;
            width: 2px;
            height: calc(100% + 10px);
            background-color: var(--ubisoft-blue);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--ubisoft-blue);
            line-height: 1;
        }
        .stats-text {
            font-size: 1.1rem;
            color: var(--ubisoft-gray);
            font-weight: 500;
        }
        .testimonial-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            border-left: 4px solid var(--ubisoft-blue);
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
        }
        .testimonial-author {
            font-weight: 600;
            color: var(--ubisoft-dark);
        }
        .testimonial-role {
            color: var(--ubisoft-blue);
            font-size: 0.9rem;
        }
        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(0, 119, 204, 0.1);
            color: var(--ubisoft-blue);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                padding-top: 100px;
                text-align: center;
            }
            .stats-number {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .game-card {
                margin-bottom: 2rem;
            }
        }
        .news-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            height: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .news-card:hover {
            transform: translateY(-10px);
        }
        .news-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--ubisoft-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .contact-info-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            text-align: center;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--ubisoft-blue);
        }
        .contact-info-card:hover {
            transform: translateY(-10px);
        }
        .contact-icon {
            font-size: 2.5rem;
            color: var(--ubisoft-blue);
            margin-bottom: 1.5rem;
        }
        form .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        form .form-control:focus {
            border-color: var(--ubisoft-blue);
            box-shadow: 0 0 0 0.25rem rgba(0, 119, 204, 0.25);
        }
        .form-label {
            font-weight: 600;
            color: #444;
            margin-bottom: 0.5rem;
        }
        .award-badge {
            display: inline-block;
            padding: 8px 20px;
            background-color: rgba(0, 119, 204, 0.1);
            color: var(--ubisoft-blue);
            border-radius: 50px;
            font-weight: 600;
            margin: 5px;
            border: 1px solid rgba(0, 119, 204, 0.3);
        }
