:root {
            --primary-green: #0a5c36;
            --accent-gold: #ffd700;
            --poker-red: #d32f2f;
            --dark-bg: #1a1a1a;
            --light-bg: #f8f9fa;
            --text-dark: #333333;
            --text-light: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: var(--accent-gold);
            color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
        }
        .highlight {
            color: var(--poker-red);
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
        }
        .logo span {
            color: var(--text-light);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: var(--accent-gold);
            color: var(--primary-green);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary-green);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: var(--accent-gold);
            color: var(--primary-green);
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .main-article {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light-bg);
        }
        .publish-date {
            color: #666;
            font-style: italic;
        }
        .article-content h1 {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--primary-green);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent-gold);
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: var(--poker-red);
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content ul, .article-content ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .cheat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .cheat-table th, .cheat-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #ddd;
        }
        .cheat-table th {
            background-color: var(--primary-green);
            color: white;
            font-weight: bold;
        }
        .cheat-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .cheat-table tr:hover {
            background-color: #f1f1f1;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .callout-box {
            background-color: #fff8e1;
            border-left: 5px solid var(--accent-gold);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .interview-section {
            background-color: #e8f5e9;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 2px solid var(--primary-green);
        }
        .interview-section blockquote {
            font-style: italic;
            font-size: 1.2rem;
            color: #555;
            border-left: 4px solid var(--poker-red);
            padding-left: 20px;
            margin: 20px 0;
        }
        .sidebar {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }
        .sidebar-links li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar-links li::before {
            content: '▶';
            color: var(--poker-red);
            position: absolute;
            left: 0;
        }
        .sidebar-links a:hover {
            color: var(--primary-green);
            padding-left: 5px;
        }
        .download-box {
            background-color: var(--primary-green);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }
        .download-box a {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        .interactive-section {
            margin: 50px 0;
            padding: 40px;
            background-color: #f5f5f5;
            border-radius: 10px;
        }
        .search-box, .comment-box, .rating-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .search-box input, .comment-box textarea, .rating-box select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-box input:focus, .comment-box textarea:focus, .rating-box select:focus {
            border-color: var(--primary-green);
            outline: none;
        }
        .comment-box textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            justify-content: center;
        }
        .star-rating i {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i:hover, .star-rating i.active {
            color: var(--accent-gold);
        }
        .web-links-section {
            background-color: var(--dark-bg);
            color: white;
            padding: 50px 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #333;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary-green);
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .main-article {
                padding: 25px;
            }
            .interactive-section {
                padding: 25px;
            }
        }
