:root {
            --primary: #b31b1b;
            --primary-dark: #8a0f0f;
            --secondary: #1a1a2e;
            --accent: #f2c744;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --gray-light: #e9ecef;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --container-width: 1200px;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary);
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-left: 1rem;
            border-left: 5px solid var(--primary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background-color: var(--secondary);
            color: var(--light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: var(--accent);
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .logo a:hover {
            color: #fff;
            text-decoration: none;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--light);
            font-weight: 600;
            text-decoration: none;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .nav-desktop a:hover {
            color: var(--accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background-color: var(--secondary);
            padding: 2rem;
            transition: var(--transition);
            z-index: 1001;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile .close-menu {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile ul {
            list-style: none;
            margin-top: 3rem;
        }
        .nav-mobile li {
            margin-bottom: 1.5rem;
        }
        .nav-mobile a {
            color: var(--light);
            font-size: 1.2rem;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            color: var(--accent);
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            background-color: var(--gray-light);
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin: 0 0.7rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .search-section {
            background: linear-gradient(135deg, var(--secondary) 0%, #2d2d4a 100%);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-bottom: 3rem;
            color: white;
            text-align: center;
        }
        .search-section h2 {
            color: var(--accent);
            border: none;
            padding-left: 0;
            margin-bottom: 1.5rem;
        }
        .search-form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1.1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #fff;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: var(--gray-light);
            padding: 2rem;
            border-radius: var(--border-radius);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        @media (max-width: 992px) {
            .sidebar {
                position: static;
            }
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar li:before {
            content: '▸';
            color: var(--primary);
            position: absolute;
            left: 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            max-height: 500px;
            object-fit: cover;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 5px solid white;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid var(--accent);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            box-shadow: var(--shadow);
        }
        .highlight-box h3 {
            color: var(--secondary);
            margin-top: 0;
        }
        .user-interaction {
            background: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .user-interaction h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .interaction-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(179, 27, 27, 0.25);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: var(--accent);
        }
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            grid-column: 1 / -1;
            justify-self: center;
            margin-top: 1rem;
        }
        .submit-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(179, 27, 27, 0.2);
        }
        .footer-links-section {
            background-color: var(--secondary);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--light);
            font-weight: 600;
            text-decoration: none;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .web-link p {
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }
        .site-footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .text-bold {
            font-weight: 700;
            color: var(--secondary);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-content, .article-content, .sidebar, .user-interaction {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: var(--border-radius);
                margin-bottom: 0.8rem;
            }
            .search-form button {
                border-radius: var(--border-radius);
                padding: 1rem;
            }
            .interaction-form {
                grid-template-columns: 1fr;
            }
        }
