        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ffd166;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9e00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            color: #ffd166;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ffd166, #ef476f);
            border-radius: 2px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #118ab2, #06d6a0);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(6, 214, 160, 0.3);
            background: linear-gradient(135deg, #06d6a0, #118ab2);
            color: white;
        }
        header {
            background-color: #1b263b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd166, #ef476f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffd166;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1b263b;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #2a3a5a;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #2a3a5a;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #8d99ae;
        }
        .breadcrumb a:hover {
            color: #ffd166;
        }
        .breadcrumb span {
            color: #8d99ae;
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(27, 38, 59, 0.9)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            text-align: center;
            padding: 100px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ffd166;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e0e1dd;
        }
        .search-section {
            background-color: #1b263b;
            padding: 30px 0;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: #2a3a5a;
            color: #e0e1dd;
        }
        .search-input::placeholder {
            color: #8d99ae;
        }
        .search-btn {
            padding: 0 30px;
            background: linear-gradient(135deg, #ef476f, #ff9e00);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #ff9e00, #ef476f);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: #1b263b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        article h2 {
            color: #06d6a0;
            margin: 30px 0 15px;
            font-size: 2rem;
        }
        article h3 {
            color: #118ab2;
            margin: 25px 0 10px;
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        article strong {
            color: #ffd166;
            font-weight: 700;
        }
        article em {
            color: #ef476f;
            font-style: italic;
        }
        .hand-ranking-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #2a3a5a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .hand-ranking-table th, .hand-ranking-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid #3a4a6a;
        }
        .hand-ranking-table th {
            background-color: #118ab2;
            color: white;
            font-weight: 700;
        }
        .hand-ranking-table tr:hover {
            background-color: #3a4a6a;
        }
        .hand-ranking-table .rank-1 {
            color: #ffd700;
            font-weight: 800;
        }
        .hand-ranking-table .rank-2 {
            color: #c0c0c0;
            font-weight: 700;
        }
        .hand-ranking-table .rank-3 {
            color: #cd7f32;
            font-weight: 700;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            margin: 30px 0;
            border: 5px solid #2a3a5a;
        }
        .pull-quote {
            border-left: 5px solid #ef476f;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.3rem;
            color: #ffd166;
            background-color: rgba(239, 71, 111, 0.1);
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        aside {
            background-color: #1b263b;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: #ffd166;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3a5a;
        }
        .quick-nav {
            list-style: none;
        }
        .quick-nav li {
            margin-bottom: 12px;
        }
        .quick-nav a {
            display: block;
            padding: 12px 15px;
            background-color: #2a3a5a;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .quick-nav a:hover {
            background-color: #118ab2;
            transform: translateX(5px);
        }
        .stats-box {
            background: linear-gradient(135deg, #2a3a5a, #1b263b);
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
            border: 1px solid #3a4a6a;
        }
        .stats-box p {
            margin-bottom: 10px;
        }
        .stats-box strong {
            color: #06d6a0;
        }
        .interaction-section {
            background-color: #1b263b;
            border-radius: 15px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .rating-box, .comment-box {
            background-color: #2a3a5a;
            padding: 30px;
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #8d99ae;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffd700;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 15px;
            border: none;
            border-radius: 8px;
            background-color: #3a4a6a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            background-color: #1b263b;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #2a3a5a;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #3a4a6a;
        }
        .web-link a {
            color: #06d6a0;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ffd166;
        }
        footer {
            background-color: #0d1b2a;
            padding: 40px 20px;
            text-align: center;
            border-top: 3px solid #2a3a5a;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd166, #ef476f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .copyright {
            color: #8d99ae;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2a3a5a;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            article {
                padding: 25px;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 70px 15px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
            .hand-ranking-table {
                font-size: 0.9rem;
            }
            .hand-ranking-table th, .hand-ranking-table td {
                padding: 12px 8px;
            }
        }
