        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f5f1;
            padding-bottom: 3rem;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: #8B0000; 
        }
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin: 2rem 0;
            color: #8B0000;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #FFD700; 
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #006400; 
            margin-top: 1.5rem;
        }
        p {
            margin: 1rem 0;
            font-size: 1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #FFE4B5; 
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .navbar {
            background-color: #1a1a1a;
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #FFD700;
            letter-spacing: 1px;
        }
        .logo span {
            color: #8B0000;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links li a {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: #FFD700;
        }
        .btn {
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
        }
        .btn-download {
            background-color: #8B0000;
            color: white;
        }
        .btn-download:hover {
            background-color: #6b0000;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #FFD700;
            color: #1a1a1a;
            margin-left: 1rem;
        }
        .btn-login:hover {
            background-color: #e6c200;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://host.com/images/seven-sisters-gladiator-hero.jpg') center/cover no-repeat;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 0 2rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }
        .infobox {
            float: right;
            width: 300px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1rem;
            margin: 0 0 1.5rem 1.5rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .infobox-title {
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #8B0000;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 0.5rem;
        }
        .infobox-image {
            width: 100%;
            border-radius: 5px;
            margin-bottom: 1rem;
        }
        .infobox-details {
            list-style: none;
        }
        .infobox-details li {
            margin: 0.8rem 0;
            display: flex;
            justify-content: space-between;
        }
        .infobox-details li span:first-child {
            font-weight: 600;
            color: #006400;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .gameplay-modes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .mode-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .mode-card:hover {
            transform: translateY(-5px);
        }
        .mode-card h3 {
            margin-bottom: 1rem;
            color: #8B0000;
        }
        .mode-card ul {
            list-style: disc;
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        .mode-card li {
            margin: 0.5rem 0;
        }
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .character-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-5px);
        }
        .character-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-info {
            padding: 1.5rem;
        }
        .character-info h3 {
            margin-bottom: 0.5rem;
            color: #8B0000;
        }
        .character-state {
            color: #006400;
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }
        .development-timeline {
            position: relative;
            margin: 3rem 0;
            padding-left: 2rem;
        }
        .development-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #FFD700;
        }
        .timeline-event {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-event::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #8B0000;
            border: 3px solid #FFD700;
        }
        .timeline-date {
            font-weight: 700;
            color: #006400;
            margin-bottom: 0.5rem;
        }
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 4px solid #8B0000;
        }
        .review-source {
            font-weight: 700;
            color: #006400;
            margin-bottom: 0.5rem;
        }
        .review-rating {
            color: #FFD700;
            margin-bottom: 1rem;
        }
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .platform-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .platform-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #8B0000;
        }
        .footer {
            background-color: #1a1a1a;
            color: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #8B0000;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin: 0.8rem 0;
        }
        .footer-links li a:hover {
            color: #FFD700;
            transition: color 0.3s ease;
        }
        .recommendation {
            background-color: #2a2a2a;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        .recommendation h4 {
            color: #FFD700;
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .infobox {
                float: none;
                width: 100%;
                margin: 0 0 2rem 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a1a1a;
                padding: 1.5rem 2rem;
                gap: 1.5rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.75rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 1rem;
            }
            .logo {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 1rem;
            }
            .gameplay-modes, .characters-grid, .reviews-container, .platforms-grid {
                grid-template-columns: 1fr;
            }
        }
