:root {
            --primary-green: #0a5c36;
            --felt-green: #2a6b47;
            --accent-gold: #d4af37;
            --text-dark: #1a1a1a;
            --text-light: #f5f5f5;
            --bg-light: #f8f9fa;
            --border-color: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-green);
            color: var(--text-light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            color: var(--accent-gold);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .logo-text {
            background: linear-gradient(90deg, var(--accent-gold), #ffea80);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 5px;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }
        .search-form-header {
            margin-left: 30px;
            display: flex;
        }
        .search-form-header input {
            padding: 8px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 200px;
            outline: none;
        }
        .search-form-header button {
            background-color: var(--accent-gold);
            color: var(--text-dark);
            border: none;
            padding: 8px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form-header button:hover {
            background-color: #e6c02c;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-green);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--felt-green);
            font-size: 1.8rem;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border-color);
        }
        h3 {
            color: var(--text-dark);
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .intro-highlight {
            font-size: 1.2rem;
            background-color: rgba(10, 92, 54, 0.05);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            border: 3px solid var(--primary-green);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .strategy-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f5eb 100%);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
        }
        .strategy-box h3 {
            color: var(--primary-green);
        }
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        li {
            margin-bottom: 10px;
        }
        strong {
            color: var(--primary-green);
        }
        em {
            color: #666;
        }
        .player-quote {
            background-color: var(--felt-green);
            color: white;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            position: relative;
            font-style: italic;
        }
        .player-quote::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 1.5rem;
            color: var(--accent-gold);
        }
        .quote-author {
            text-align: right;
            font-style: normal;
            font-weight: bold;
            margin-top: 15px;
            color: var(--accent-gold);
        }
        aside {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        .sidebar-widget {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-green);
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }
        .rating-form label,
        .comment-form label {
            display: block;
            margin: 15px 0 5px;
            font-weight: 600;
            color: var(--text-dark);
        }
        .rating-form input,
        .rating-form textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--accent-gold);
        }
        .form-button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 15px;
            width: 100%;
            transition: var(--transition);
        }
        .form-button:hover {
            background-color: var(--felt-green);
            transform: translateY(-2px);
        }
        .footer-links-section {
            background-color: var(--bg-light);
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        footer {
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .nav-links {
                gap: 20px;
            }
            .search-form-header input {
                width: 150px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .logo {
                order: 0;
            }
            nav {
                order: 2;
                flex-basis: 100%;
                margin-top: 20px;
                display: none;
                flex-direction: column;
                align-items: flex-start;
            }
            nav.active {
                display: flex;
            }
            .nav-links {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .search-form-header {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            .search-form-header input {
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
