:root {
            --primary: #1a472a; 
            --secondary: #d4af37; 
            --accent: #b91d1d; 
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #2d5a3d 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .logo span {
            color: white;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 400px;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #9b1515;
        }
        nav {
            margin-top: 1rem;
            position: relative;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            font-weight: 600;
        }
        .nav-desktop a {
            padding: 10px 5px;
            position: relative;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            color: var(--secondary);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--primary);
            list-style: none;
            padding: 1rem;
            border-radius: 0 0 8px 8px;
            box-shadow: var(--shadow);
            flex-direction: column;
            gap: 0.8rem;
            z-index: 1001;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 15px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background-color: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 2.5rem;
            margin: 2rem auto;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent);
        }
        h3 {
            color: #2d5a3d;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            background-color: #f8f9fa;
            padding: 1.2rem;
            border-radius: 6px;
            border-left: 4px solid var(--secondary);
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #ffeaa7;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .poker-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .poker-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .poker-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        .poker-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .poker-table tr:hover {
            background-color: #e9ffe9;
        }
        .rank-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-right: 10px;
        }
        .hand-visual {
            display: inline-flex;
            gap: 5px;
            margin-left: 10px;
        }
        .card {
            width: 40px;
            height: 60px;
            background: white;
            border: 1px solid #ccc;
            border-radius: 5px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .card.hearts, .card.diamonds {
            color: var(--accent);
        }
        .card.spades, .card.clubs {
            color: black;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: #2d5a3d;
            transform: translateY(-2px);
        }
        .btn-accent {
            background-color: var(--accent);
        }
        .btn-accent:hover {
            background-color: #9b1515;
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--secondary);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 3rem 0 2rem;
        }
        .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(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #f8fff8;
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        footer {
            background-color: var(--dark);
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            width: 100%;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-top {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            .search-form {
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 20px;
            }
            .nav-desktop {
                display: none;
            }
            main {
                padding: 1.5rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
            .poker-table {
                font-size: 0.9rem;
            }
            .card {
                width: 30px;
                height: 45px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 15px;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
