        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0b1a;
            color: #f0e6ff;
            line-height: 1.7;
            background-image: radial-gradient(circle at 15% 50%, rgba(80, 30, 120, 0.15) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(40, 10, 80, 0.1) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #c19cff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff77e9;
            text-shadow: 0 0 8px rgba(255, 119, 233, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: rgba(25, 15, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #4a2a7a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff77e9, #c19cff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(193, 156, 255, 0.3);
        }
        .logo a:hover {
            text-shadow: 0 2px 15px rgba(255, 119, 233, 0.7);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff77e9, #c19cff);
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #c19cff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #b0a0d0;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #6b5b8a;
        }
        .search-section {
            background: rgba(40, 25, 70, 0.7);
            padding: 25px 0;
            margin: 20px 0;
            border-radius: 12px;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #5a3a8a;
            border-radius: 50px;
            background: rgba(20, 10, 40, 0.8);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .search-input:focus {
            border-color: #c19cff;
            box-shadow: 0 0 15px rgba(193, 156, 255, 0.5);
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(90deg, #8a4dff, #ff77e9);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(138, 77, 255, 0.4);
        }
        .content-area {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(30, 20, 55, 0.8);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid #3a2a5a;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #ffccff;
            text-shadow: 0 2px 10px rgba(255, 119, 233, 0.3);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #d4b3ff;
            padding-bottom: 10px;
            border-bottom: 2px dashed #5a3a8a;
        }
        h3 {
            font-size: 1.7rem;
            margin: 30px 0 15px;
            color: #e6ccff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(138, 77, 255, 0.2), rgba(255, 119, 233, 0.2));
            border-left: 5px solid #ff77e9;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .game-card {
            background: rgba(45, 30, 75, 0.9);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #5a3a8a;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(138, 77, 255, 0.3);
            border-color: #c19cff;
        }
        .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin: 25px 0;
        }
        .img-container img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .img-container:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #b0a0d0;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .user-interaction {
            background: rgba(40, 25, 70, 0.7);
            border-radius: 16px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #4a2a7a;
        }
        .rating-section, .comment-section {
            margin-bottom: 30px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating .star {
            color: #555;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 20px;
            border-radius: 10px;
            background: rgba(20, 10, 40, 0.8);
            border: 2px solid #5a3a8a;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
            transition: border-color 0.3s ease;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #c19cff;
        }
        .submit-btn {
            background: linear-gradient(90deg, #5a3a8a, #8a4dff);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(138, 77, 255, 0.4);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 40px 0;
            border-top: 1px solid #3a2a5a;
            border-bottom: 1px solid #3a2a5a;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(50, 35, 85, 0.8);
            padding: 12px 25px;
            border-radius: 30px;
            border: 1px solid #6b5b8a;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(90, 60, 130, 0.9);
            border-color: #c19cff;
            transform: translateY(-5px);
        }
        .main-footer {
            background: rgba(20, 10, 40, 0.95);
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #4a2a7a;
            margin-top: 50px;
        }
        .copyright {
            color: #b0a0d0;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .game-list {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(25, 15, 45, 0.98);
                padding: 20px;
                border-top: 2px solid #4a2a7a;
                box-shadow: 0 15px 30px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                width: 100%;
            }
            article {
                padding: 25px;
            }
            .footer-links {
                gap: 15px;
            }
            .web-link {
                padding: 10px 20px;
            }
        }
