        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a472a;
            --secondary: #b8860b;
            --accent: #d4af37;
            --dark: #0c1a12;
            --light: #f5f5f5;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        button, input, textarea {
            font-family: inherit;
            border: none;
            outline: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2.5rem; }
        .mt-4 { margin-top: 2.5rem; }
        .p-3 { padding: 1.5rem; }
        header {
            background-color: var(--dark);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link:hover {
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .search-bar {
            background: white;
            padding: 30px 0;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            font-size: 1.1rem;
            border: 1px solid #ced4da;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            padding: 0 30px;
            font-size: 1.2rem;
            cursor: pointer;
        }
        .search-btn:hover {
            background: #0c351d;
        }
        main {
            padding: 40px 0;
            background: white;
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed #e9ecef;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 5px solid var(--secondary);
            padding: 25px;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .poker-hands-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .poker-hands-table th, .poker-hands-table td {
            border: 1px solid #dee2e6;
            padding: 15px;
            text-align: left;
        }
        .poker-hands-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        .poker-hands-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .poker-hands-table tr:hover {
            background-color: #e9ecef;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            max-height: 500px;
            object-fit: cover;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .interaction-section {
            background: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 40px;
            margin-top: 50px;
            border-top: 5px solid var(--secondary);
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .web-links {
            background: var(--dark);
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .web-link p {
            color: #aaa;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        footer {
            background: #0c1a12;
            color: #aaa;
            padding: 40px 20px;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a3a30;
            font-size: 0.9rem;
            color: #8a8a8a;
        }
        @media (max-width: 992px) {
            .section-title { font-size: 1.9rem; }
            .article-content h1 { font-size: 2.4rem; }
            .article-content h2 { font-size: 1.8rem; }
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: 0.5s;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-link {
                padding: 15px;
                font-size: 1.1rem;
            }
            .hamburger {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .section-title { font-size: 1.7rem; }
            .article-content h1 { font-size: 2rem; }
            .article-content h2 { font-size: 1.6rem; }
            .web-links {
                grid-template-columns: 1fr;
            }
            .interaction-section {
                padding: 25px;
            }
        }
