* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f1ec;
            color: #2d2d2d;
            line-height: 1.8;
        }
        a {
            color: #7b2d26;
            text-decoration: none;
            transition: all .3s ease;
        }
        a:hover {
            color: #d4a574;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #f5c518;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #f5c518, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .my-logo small {
            display: block;
            font-size: 11px;
            letter-spacing: 1px;
            color: #fff;
            -webkit-text-fill-color: #fff;
            text-transform: lowercase;
        }
        .main-nav {
            display: flex;
            gap: 20px;
            list-style: none;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0d8c8;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all .3s;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, .1);
            color: #f5c518;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c518;
            font-size: 28px;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background: rgba(0, 0, 0, .3);
            padding: 10px 30px;
            font-size: 14px;
            color: #bbb;
        }
        .breadcrumb a {
            color: #f5c518;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #888;
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 2px solid #f0e6dd;
        }
        .search-form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #e0d8cc;
            border-radius: 30px;
            font-size: 16px;
            outline: none;
            transition: border-color .3s;
        }
        .search-form input:focus {
            border-color: #7b2d26;
        }
        .search-form button {
            background: #7b2d26;
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background .3s;
        }
        .search-form button:hover {
            background: #5a1f1a;
        }
        main {
            padding: 40px 0 60px;
        }
        .article-content {
            background: #fff;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
            margin-bottom: 40px;
        }
        .article-content h1 {
            font-family: 'Georgia', serif;
            font-size: 38px;
            color: #1a1a2e;
            margin-bottom: 16px;
            line-height: 1.3;
            border-bottom: 3px solid #f5c518;
            padding-bottom: 15px;
            position: relative;
        }
        .article-content h1::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #7b2d26;
        }
        .article-content h2 {
            font-family: 'Georgia', serif;
            font-size: 28px;
            color: #1a1a2e;
            margin: 45px 0 20px;
            padding-top: 20px;
            border-top: 2px solid #f0e6dd;
        }
        .article-content h3 {
            font-size: 22px;
            color: #7b2d26;
            margin: 30px 0 15px;
        }
        .article-content h4 {
            font-size: 18px;
            color: #1a1a2e;
            margin: 20px 0 10px;
        }
        .article-content p {
            margin-bottom: 18px;
            font-size: 16px;
            text-align: justify;
        }
        .article-content ul,
        .article-content ol {
            margin: 0 0 20px 25px;
        }
        .article-content li {
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.7;
        }
        .article-img {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
        }
        .figure-container {
            text-align: center;
            margin: 30px 0;
        }
        .figure-container figcaption {
            font-size: 14px;
            color: #888;
            margin-top: 8px;
            font-style: italic;
        }
        .info-box {
            background: #f8f4ef;
            border-left: 4px solid #f5c518;
            padding: 20px 25px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .info-box strong {
            color: #7b2d26;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf6ec, #f8efe6);
            border: 2px solid #e8d5c0;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }
        .highlight-box h3 {
            margin-top: 0;
        }
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .price-card {
            background: #faf6f2;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 2px solid transparent;
            transition: all .3s;
        }
        .price-card:hover {
            border-color: #f5c518;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
        }
        .price-card .price {
            font-size: 36px;
            font-weight: 800;
            color: #7b2d26;
        }
        .price-card .platform {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 10px;
        }
        .price-card i {
            font-size: 40px;
            color: #f5c518;
            margin-bottom: 15px;
            display: block;
        }
        .player-quote {
            background: #f9f5f0;
            border-radius: 10px;
            padding: 20px 25px;
            margin: 20px 0;
            border-left: 4px solid #7b2d26;
            font-style: italic;
            position: relative;
        }
        .player-quote::before {
            content: '"';
            position: absolute;
            left: 10px;
            top: -5px;
            font-size: 50px;
            color: rgba(123, 45, 38, .2);
            font-family: Georgia, serif;
        }
        .player-quote .author {
            display: block;
            text-align: right;
            font-style: normal;
            font-size: 14px;
            color: #888;
            margin-top: 10px;
            font-weight: 600;
        }
        .player-quote .author span {
            color: #f5c518;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            font-size: 14px;
        }
        table th {
            background: #1a1a2e;
            color: #f5c518;
            padding: 12px 15px;
            text-align: left;
        }
        table td {
            padding: 12px 15px;
            border-bottom: 1px solid #f0e6dd;
            background: #fff;
        }
        table tr:hover td {
            background: #f8f4ef;
        }
        .faq-item {
            margin-bottom: 20px;
            background: #faf6f2;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #e8d5c0;
        }
        .faq-item h4 {
            color: #7b2d26;
            margin-bottom: 10px;
            font-size: 17px;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
        }
        .comment-section h2,
        .rating-section h2 {
            color: #1a1a2e;
            margin-bottom: 20px;
            font-family: Georgia, serif;
            font-size: 26px;
        }
        .comment-form,
        .rating-form {
            display: grid;
            gap: 15px;
            max-width: 600px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select,
        .rating-form input {
            padding: 12px 15px;
            border: 2px solid #e0d8cc;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
        }
        .comment-form textarea {
            height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: #7b2d26;
            color: #fff;
            border: none;
            padding: 14px 30px;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: background .3s;
            width: fit-content;
        }
        .btn-submit:hover {
            background: #5a1f1a;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 30px;
            color: #e0d8cc;
        }
        .star-rating .fa-star {
            cursor: pointer;
            transition: color .2s;
        }
        .star-rating .fa-star.active {
            color: #f5c518;
        }
        .last-updated {
            font-size: 13px;
            color: #999;
            font-style: italic;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0e6dd;
            text-align: right;
        }
        .last-updated i {
            margin-right: 5px;
        }
        footer {
            background: #1a1a2e;
            color: #aaa;
            padding: 50px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f5c518;
            margin-bottom: 15px;
            font-size: 16px;
        }
        .footer-grid a {
            color: #aaa;
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
        }
        .footer-grid a:hover {
            color: #f5c518;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #777;
        }
        .copyright a {
            color: #f5c518;
        }
        friend-link {
            display: block;
            background: #16213e;
            padding: 20px 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        friend-link a {
            color: #f5c518;
            margin-right: 20px;
            font-size: 14px;
        }
        @media(max-width:768px) {
            .header-container {
                padding: 0 15px;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 15px 0;
                gap: 10px;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 25px 20px;
            }
            .article-content h1 {
                font-size: 26px;
            }
            .article-content h2 {
                font-size: 22px;
            }
            .article-content h3 {
                font-size: 18px;
            }
            .breadcrumb {
                padding: 8px 15px;
                font-size: 12px;
            }
            .search-form {
                flex-direction: column;
                padding: 0 15px;
            }
            .search-form button {
                width: 100%;
            }
            .price-grid {
                grid-template-columns: 1fr;
            }
            .comment-section,
            .rating-section {
                padding: 25px 15px;
            }
        }
        @media(max-width:480px) {
            .article-content h1 {
                font-size: 22px;
            }
            .article-content h2 {
                font-size: 19px;
            }
            .my-logo {
                font-size: 22px;
            }
        }
