        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            font-size: 16px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary-color);
            font-size: 2rem;
        }
        .logo:hover {
            color: var(--secondary-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--bg-white);
            padding: 1rem;
            border-top: 1px solid var(--border-color);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            text-decoration: none;
            color: var(--text-dark);
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .nav-mobile a:hover {
            color: var(--primary-color);
        }
        .breadcrumb {
            background-color: var(--bg-white);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: var(--text-light);
            font-size: 0.8rem;
        }
        main {
            background-color: var(--bg-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            main {
                padding: 1.5rem;
            }
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            color: var(--secondary-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.1rem;
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary-color);
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 1.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--accent-color);
            margin: 2rem 0;
        }
        .highlight h3 {
            color: var(--text-dark);
            margin-top: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            border-top: 4px solid var(--primary-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .winner-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }
        .winner-table th {
            background-color: var(--primary-color);
            color: white;
            text-align: left;
            padding: 1rem;
            font-weight: 600;
        }
        .winner-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .winner-table tr:nth-child(even) {
            background-color: var(--bg-light);
        }
        .winner-table tr:hover {
            background-color: #e0f2fe;
        }
        .winner-table .winner {
            font-weight: 700;
            color: var(--primary-color);
        }
        .winner-table .runner-up {
            font-weight: 600;
            color: var(--secondary-color);
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background-color: var(--bg-light);
            border-radius: var(--radius);
            margin: 2rem 0;
            border-left: 4px solid var(--secondary-color);
            font-size: 1.1rem;
        }
        .quote-author {
            text-align: right;
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 1rem;
        }
        .interactive-section {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 3rem 0;
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus {
            border-color: var(--primary-color);
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #1d4ed8;
        }
        .rating-section {
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: var(--bg-white);
            border-radius: var(--radius);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
        }
        .rating-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            margin: 1rem 0;
            font-family: inherit;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .rating-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #b91c1c;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background-color: var(--bg-white);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .comment-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            margin: 1rem 0;
            font-family: inherit;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #1d4ed8;
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .internal-links a {
            background-color: var(--bg-light);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .internal-links a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #dbeafe;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.8rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #dbeafe;
            font-size: 0.9rem;
        }
        .bold {
            font-weight: 700;
            color: var(--primary-color);
        }
        .text-center {
            text-align: center;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .winner-table {
                font-size: 0.9rem;
            }
            .winner-table th,
            .winner-table td {
                padding: 0.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
