* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0d3b66 0%, #1a5a9e 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd166;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .logo a span {
            color: #06d6a0;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.8rem;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
            padding: 0.5rem 0.3rem;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover, nav ul li a.active {
            color: #ffd166;
            border-bottom-color: #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #0d3b66;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        article h1 {
            font-size: 2.8rem;
            color: #0d3b66;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #06d6a0;
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #1a5a9e;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ccc;
        }
        article h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 1.8rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        article strong {
            color: #d00000;
            font-weight: 700;
        }
        article img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
            display: block;
        }
        .figure-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid #06d6a0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .payout-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .payout-table th, .payout-table td {
            border: 1px solid #ddd;
            padding: 1rem;
            text-align: center;
        }
        .payout-table th {
            background-color: #0d3b66;
            color: white;
            font-weight: 600;
        }
        .payout-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .payout-table tr:hover {
            background-color: #e3f2fd;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.07);
        }
        .widget h3 {
            color: #0d3b66;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd166;
            font-size: 1.4rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            background: linear-gradient(to right, #0d3b66, #1a5a9e);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background 0.3s;
            width: 100%;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(to right, #1a5a9e, #0d3b66);
        }
        .star-rating {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .footer-links {
            background: #1a5a9e;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffd166;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0d3b66;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .footer-links-small a {
            color: #ccc;
            margin: 0 1rem;
            text-decoration: none;
        }
        .footer-links-small a:hover {
            color: #ffd166;
        }
        .copyright {
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 1rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #0d3b66;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 0.8rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .footer-links .container {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 1.8rem;
            }
            .widget {
                padding: 1.2rem;
            }
        }
