* {
            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-color: #f8f9fa;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e94560;
            text-decoration: none;
        }
        .logo:hover {
            color: #ff6b8b;
            transition: color 0.3s ease;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: #e94560;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #2d3748;
            padding: 1rem 0;
            color: #cbd5e0;
        }
        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb a {
            color: #e94560;
            text-decoration: none;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .article-header {
            background: linear-gradient(135deg, #e94560 0%, #ff6b8b 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        .article-content {
            padding: 3rem 2rem;
        }
        .article-section {
            margin-bottom: 3rem;
        }
        .article-section h2 {
            color: #e94560;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #e94560;
            padding-bottom: 0.5rem;
        }
        .article-section h3 {
            color: #2d3748;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem 0;
        }
        .article-section p {
            margin-bottom: 1rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff5f5;
            border-left: 4px solid #e94560;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .search-section {
            background-color: #f7fafc;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-button {
            background-color: #e94560;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        .search-button:hover {
            background-color: #ff6b8b;
        }
        .interaction-section {
            background-color: #f7fafc;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .rating-system {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #e2e8f0;
            margin: 1rem 0;
        }
        .stars .active {
            color: #fbbf24;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: #e94560;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        .submit-button:hover {
            background-color: #ff6b8b;
        }
        .footer-links {
            background-color: #2d3748;
            padding: 3rem 2rem;
        }
        .links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #4a5568;
            padding: 1rem;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background-color: #5a6578;
        }
        .web-link a {
            color: #e94560;
            text-decoration: none;
            font-weight: 500;
        }
        footer {
            background-color: #1a202c;
            color: #cbd5e0;
            text-align: center;
            padding: 2rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a1a2e;
                padding: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-section h2 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .schema-data {
            display: none;
        }
