        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, textarea {
            font-family: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 6px;
            border-radius: 3px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
            color: white;
            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;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: -0.5px;
        }
        .logo a:hover {
            color: #fff;
        }
        .logo span {
            color: #fff;
            font-weight: 300;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffeb3b;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffeb3b;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .search-box {
            margin-left: 30px;
            display: flex;
        }
        .search-box input {
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            width: 220px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background-color: #ffeb3b;
            color: #1a237e;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffeb3b;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 12px 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #c5cae9;
        }
        .breadcrumb a {
            color: #3949ab;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #757575;
        }
        main {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 30px auto;
            padding: 40px;
            overflow: hidden;
        }
        article {
            max-width: 100%;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #3949ab;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #c5cae9;
        }
        h3 {
            font-size: 1.6rem;
            color: #5c6bc0;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.25rem;
            color: #555;
            background-color: #f3f4ff;
            padding: 25px;
            border-left: 5px solid #3949ab;
            border-radius: 0 8px 8px 0;
            margin-bottom: 40px;
        }
        .gameplay-img {
            width: 80%;
            margin: 30px auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid #ffeb3b;
            transition: transform 0.5s ease;
        }
        .gameplay-img:hover {
            transform: scale(1.02);
        }
        .tip-box {
            background-color: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box h4 {
            color: #2e7d32;
            margin-bottom: 10px;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .strategy-card {
            background: #f5f7ff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .strategy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .strategy-card h4 {
            color: #1a237e;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .interview {
            background-color: #fff3e0;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #ffb74d;
        }
        .quote {
            font-size: 1.3rem;
            color: #e65100;
            font-style: italic;
            text-align: center;
            margin: 25px 0;
            padding: 20px;
            background: white;
            border-radius: 10px;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 12px 0;
            padding-left: 40px;
            position: relative;
        }
        .feature-list li:before {
            content: '✅';
            position: absolute;
            left: 0;
            top: 12px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: center;
        }
        .comparison-table th {
            background-color: #3949ab;
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #f1f3ff;
        }
        .user-modules {
            margin-top: 60px;
            border-top: 2px solid #eee;
            padding-top: 40px;
        }
        .module-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .module {
            background: #f8f9ff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .module h3 {
            color: #1a237e;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            justify-content: center;
        }
        .rating-stars .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffc107;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button,
        .module button {
            background-color: #3949ab;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .comment-form button:hover,
        .module button:hover {
            background-color: #1a237e;
        }
        .comments-list {
            margin-top: 30px;
        }
        .comment {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #666;
            font-size: 0.95rem;
        }
        .web-links {
            background-color: #1a237e;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: #ffeb3b;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #0d153a;
            color: #b0b7d6;
            padding: 40px 20px;
            text-align: center;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #b0b7d6;
        }
        .footer-links a:hover {
            color: #ffeb3b;
        }
        .copyright {
            border-top: 1px solid #2a356d;
            padding-top: 25px;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .nav-links { gap: 20px; }
            .search-box input { width: 180px; }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .logo {
                order: 0;
                flex-grow: 1;
            }
            nav {
                order: 2;
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            .search-box {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            .search-box input {
                width: calc(100% - 100px);
            }
            main {
                padding: 25px;
            }
            .gameplay-img {
                width: 100%;
            }
            .strategy-grid {
                grid-template-columns: 1fr;
            }
            .module-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .section {
                padding: 40px 0;
            }
            .intro {
                font-size: 1.1rem;
                padding: 20px;
            }
        }
