* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #e94560;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e94560;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #0f3460;
        }
        .logo-text {
            background: linear-gradient(45deg, #e94560, #0f3460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            color: #e94560;
            background: rgba(233, 69, 96, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid #333;
            transition: background 0.3s ease;
        }
        .nav-mobile a:hover {
            background: rgba(233, 69, 96, 0.1);
        }
        .breadcrumb {
            background: rgba(15, 52, 96, 0.8);
            padding: 1rem 0;
            margin-top: 80px;
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            color: #fff;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #e94560;
            text-decoration: none;
        }
        main {
            background: #fff;
            margin: 2rem auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        .hero {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            color: #fff;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #e94560, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        .content-section {
            padding: 3rem 2rem;
        }
        .content-section h2 {
            color: #0f3460;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            border-left: 5px solid #e94560;
            padding-left: 1rem;
        }
        .content-section h3 {
            color: #1a1a2e;
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(135deg, #e94560, #0f3460);
            color: #fff;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: 400px;
            background: #f0f0f0;
            margin: 2rem auto;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.1rem;
        }
        .search-section {
            background: #f8f9fa;
            padding: 3rem 2rem;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #0f3460;
            border-radius: 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(135deg, #e94560, #0f3460);
            color: #fff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        .search-btn:hover {
            transform: translateY(-2px);
        }
        .rating-section {
            background: #fff;
            padding: 3rem 2rem;
            border-top: 3px solid #f0f0f0;
        }
        .rating-form {
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .comments-section {
            background: #f8f9fa;
            padding: 3rem 2rem;
        }
        .comment-form {
            max-width: 600px;
            margin: 0 auto 3rem auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #0f3460;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
        }
        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, #e94560, #0f3460);
            color: #fff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
        }
        .footer-links {
            background: #1a1a2e;
            padding: 3rem 2rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background: rgba(233, 69, 96, 0.2);
        }
        .web-link a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
        }
        footer {
            background: #0f3460;
            color: #fff;
            text-align: center;
            padding: 2rem;
        }
        .copyright {
            opacity: 0.8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-section h2 {
                font-size: 1.8rem;
            }
            .content-section h3 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .header-content {
                padding: 0.5rem 0;
            }
            .breadcrumb {
                margin-top: 60px;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 2rem 1rem;
            }
            .content-section {
                padding: 2rem 1rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
