        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4a6fa5;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #2a4a9c, #4a6fa5);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffd166;
        }
        .logo .fa-dice {
            color: #ffd166;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 3px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            border-bottom-color: #ffd166;
            color: #ffd166;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a2a6c;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: #ffd166;
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #4a6fa5;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6c757d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a2a6c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #e63946;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2a4a9c;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #4a6fa5;
        }
        h3 {
            font-size: 1.6rem;
            color: #4a6fa5;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #6c757d;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #555;
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #4a6fa5;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff9e6, #ffeaa7);
            border-left: 5px solid #fdcb6e;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stat-box {
            background: #e3f2fd;
            border: 2px solid #4a6fa5;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }
        .stat-item h5 {
            color: #1a2a6c;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .stat-item p {
            margin-bottom: 0;
            color: #555;
        }
        .player-quote {
            font-style: italic;
            background: #f8f9fa;
            border-left: 4px solid #e63946;
            padding: 1.5rem;
            margin: 2rem 0;
            color: #444;
        }
        .player-quote cite {
            display: block;
            margin-top: 1rem;
            color: #666;
            font-weight: 600;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .game-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .last-updated {
            background: #e9ecef;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 3rem;
            font-size: 0.95rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .last-updated i {
            color: #e63946;
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1a2a6c;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd166;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #4a6fa5;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: #4a6fa5;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2a4a9c;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .rate-btn {
            background: #e63946;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .rate-btn:hover {
            background: #c1121f;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #ddd;
        }
        .related-links a {
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            color: #e63946;
        }
        .related-links i {
            color: #4a6fa5;
        }
        .comment-section {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 2rem;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #4a6fa5;
            outline: none;
        }
        .comment-form button {
            background: #1a2a6c;
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #2a4a9c;
        }
        .comment-list {
            margin-top: 2.5rem;
        }
        .comment {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #4a6fa5;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #666;
        }
        footer {
            background: #1a2a6c;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #ffd166;
        }
        .footer-links h4 {
            color: #ffd166;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ddd;
        }
        .footer-links a:hover {
            color: #ffd166;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 6px;
            margin: 1rem 0;
        }
        friend-link a {
            color: #ffd166;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .header-container { padding: 0 15px; }
            article, aside, .comment-section { padding: 1.5rem; }
            .main-content { gap: 1.5rem; }
            .stat-box { grid-template-columns: 1fr; }
        }
