        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #2c5282;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #1a365d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f6e05e, #ecc94b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo:hover {
            text-decoration: none;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: #4a5568;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #2d3748;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin-bottom: 0.8rem;
        }
        .nav-mobile a {
            color: #e2e8f0;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
        }
        .nav-mobile a:hover {
            background-color: #4a5568;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            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: #718096;
        }
        .breadcrumb a {
            color: #4a5568;
        }
        .search-bar {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
            text-align: center;
        }
        .search-bar h2 {
            margin-bottom: 1rem;
            color: #2d3748;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #2b6cb0, #2c5282);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #2c5282, #1a365d);
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a202c;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-header .meta {
            color: #718096;
            font-style: italic;
        }
        .content-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.5rem;
        }
        .content-section h2 {
            color: #2d3748;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ecc94b;
        }
        .content-section h3 {
            color: #4a5568;
            font-size: 1.6rem;
            margin: 1.8rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(135deg, #ebf8ff, #bee3f8);
            border-left: 5px solid #2b6cb0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box h4 {
            color: #2c5282;
            margin-bottom: 0.5rem;
        }
        .poker-image {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .poker-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .poker-image:hover img {
            transform: scale(1.03);
        }
        .poker-image figcaption {
            text-align: center;
            padding: 0.8rem;
            background-color: #f7fafc;
            color: #4a5568;
            font-style: italic;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-form, .rating-form {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #4a5568;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            margin-top: 0.5rem;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #f6e05e;
        }
        .submit-btn {
            background: linear-gradient(90deg, #38a169, #2f855a);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #2f855a, #276749);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .internal-links {
            background-color: #f7fafc;
            padding: 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #2d3748;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #2b6cb0;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.08);
        }
        footer {
            background: linear-gradient(90deg, #1a202c 0%, #2d3748 100%);
            color: #e2e8f0;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            width: 100%;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .content-section h2 {
                font-size: 1.6rem;
            }
            .content-section h3 {
                font-size: 1.3rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 5px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 5px;
                padding: 0.8rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
