:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --dark: #212529;
            --light: #f8f9fa;
            --poker-green: #0a5c36;
            --poker-gold: #ffc107;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--poker-green);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--poker-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--success);
        }
        .my-logo:hover {
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.75rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--dark);
            font-weight: 500;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: white;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--poker-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .search-box {
            background: white;
            border-radius: 50px;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .search-box input {
            border: none;
            outline: none;
            flex: 1;
            padding: 0.5rem;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: var(--poker-green);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--poker-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--poker-green);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            color: #555;
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            color: var(--secondary);
            font-weight: 300;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 1.5rem;
            border-left: 5px solid var(--poker-gold);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--secondary);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: var(--poker-green);
            border-bottom: 2px solid #eee;
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            margin: 1rem 0;
        }
        .sidebar li {
            margin-bottom: 0.75rem;
            padding-left: 1rem;
            position: relative;
        }
        .sidebar li::before {
            content: '♠';
            color: var(--primary);
            position: absolute;
            left: 0;
        }
        .user-interaction {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .user-interaction h2 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .stars .active {
            color: var(--poker-gold);
        }
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background: var(--poker-green);
            transform: translateY(-2px);
        }
        .btn-block {
            width: 100%;
        }
        .site-footer {
            background: var(--dark);
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: inline-block;
            background: #2c3e50;
            color: #aaa;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        friend-link a {
            color: inherit;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--dark);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid #444;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article, .user-interaction {
                padding: 1.5rem;
            }
        }
