:root {
            --primary-red: #c62828;
            --primary-dark: #1a237e;
            --primary-light: #e3f2fd;
            --accent-gold: #ffd700;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #f5f5f5;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--bg-light);
            max-width: 100%;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #283593 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Trebuchet MS', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: var(--primary-red);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-gold);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-dark);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.75rem 0;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto 0;
            padding: 0 1.5rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary-dark);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .content-area {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--primary-red);
        }
        article h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .highlight {
            background-color: var(--primary-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-dark);
        }
        .highlight strong {
            color: var(--primary-dark);
            font-size: 1.1rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            background-color: var(--primary-dark);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background-color: var(--primary-red);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .star-rating i {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--accent-gold);
        }
        .footer-links {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding: 0 1.5rem;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        .web-link a {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
            background-color: var(--primary-light);
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            width: 100%;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .header-container,
            .breadcrumb,
            .main-container,
            .footer-links,
            .footer-container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
        }
