:root {
            --primary-red: #e10600;
            --dark-bg: #1e1e1e;
            --light-bg: #f8f9fa;
            --text-dark: #2d2d2d;
            --text-light: #ffffff;
            --accent-gold: #ffd700;
            --accent-silver: #c0c0c0;
            --grid-gap: 1.5rem;
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #a80500;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: var(--primary-red);
            text-transform: uppercase;
            text-shadow: 2px 2px 0 #000;
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--accent-gold);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem;
            border-radius: var(--border-radius);
        }
        .main-nav a:hover {
            background-color: var(--primary-red);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background-color: #eee;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .search-container {
            background: linear-gradient(135deg, var(--primary-red), #8b0000);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            color: white;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--dark-bg);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .search-btn:hover {
            background-color: #333;
        }
        .article-content {
            background-color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.1rem;
            color: var(--dark-bg);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 0.8rem;
            color: #444;
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.5rem;
            color: #666;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        strong {
            color: var(--primary-red);
            font-weight: 800;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #555;
            margin-bottom: 2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #777;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background-color: #fff9e6;
            border-left: 5px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .standings-table th {
            background-color: var(--primary-red);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .standings-table td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid #ddd;
        }
        .standings-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .standings-table tr:hover {
            background-color: #ffe6e6;
        }
        .pos-1 { color: var(--accent-gold); font-weight: bold; }
        .pos-2 { color: var(--accent-silver); font-weight: bold; }
        .pos-3 { color: #cd7f32; font-weight: bold; }
        .user-interactive {
            background-color: #f0f8ff;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border: 2px dashed #a0c8f0;
        }
        .interactive-title {
            color: #0066cc;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #a80500;
            transform: translateY(-2px);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--grid-gap);
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #333;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1rem 0;
            border-left: 4px solid var(--primary-red);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--border-radius);
                margin-bottom: 0.5rem;
            }
            .search-btn {
                border-radius: var(--border-radius);
                padding: 0.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            .site-header, .search-container, .user-interactive, .site-footer {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
        }
