* {
            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, #1a2a3a 0%, #2c3e50 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 #e74c3c;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e74c3c;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .logo:hover {
            color: #c0392b;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-mobile {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-mobile {
                display: block;
            }
        }
        .nav-link {
            color: #ecf0f1;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .nav-link:hover {
            background: #e74c3c;
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-menu {
            display: none;
            background: rgba(0, 0, 0, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
        }
        .mobile-menu.active {
            display: block;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            margin-top: 80px;
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #e74c3c;
            text-decoration: none;
        }
        main {
            padding: 2rem 0;
            background: rgba(255, 255, 255, 0.95);
            margin: 0 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-header {
            text-align: center;
            padding: 2rem 0;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .content-section {
            padding: 2rem;
            margin-bottom: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            border-left: 5px solid #e74c3c;
            padding-left: 1rem;
            font-size: 2rem;
        }
        h3 {
            color: #34495e;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #e74c3c;
        }
        .game-image {
            width: 100%;
            height: 400px;
            background: #34495e;
            border-radius: 10px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            background-image: linear-gradient(45deg, #2c3e50 25%, #34495e 25%, #34495e 50%, #2c3e50 50%, #2c3e50 75%, #34495e 75%, #34495e 100%);
            background-size: 56.57px 56.57px;
        }
        .search-section {
            background: #ecf0f1;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #bdc3c7;
            border-right: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-button {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #c0392b;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-section, .rating-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 2px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #e74c3c;
        }
        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }
        .submit-button {
            background: #27ae60;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }
        .submit-button:hover {
            background: #219a52;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #bdc3c7;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #f39c12;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #34495e;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .web-link a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
        }
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 25px;
                border-right: 2px solid #bdc3c7;
                margin-bottom: 1rem;
            }
            .search-button {
                border-radius: 25px;
            }
            main {
                margin: 0 10px;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; }
        .text-red { color: #e74c3c; }
        .text-green { color: #27ae60; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
