* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #e63946;
            --primary-dark: #c1121f;
            --secondary: #1d3557;
            --accent: #a8dadc;
            --light: #f1faee;
            --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;
            --max-width: 1200px;
            --font-heading: 'Segoe UI', system-ui, sans-serif;
            --font-body: 'Georgia', serif;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, nav, .logo, .btn {
            font-family: var(--font-heading);
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            border-bottom: 3px solid var(--accent);
            padding-bottom: 10px;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        header {
            background-color: var(--secondary);
            color: var(--light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary);
        }
        .breadcrumb {
            background-color: var(--gray-light);
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: var(--light);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, #457b9d 100%);
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .hero-cta {
            display: inline-flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid var(--accent);
        }
        .btn-secondary:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateY(-3px);
        }
        .search-box {
            background-color: var(--gray-light);
            padding: 30px 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-form button:hover {
            background-color: var(--primary);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            font-size: 1.1rem;
        }
        .main-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .main-content h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            color: var(--secondary);
        }
        .main-content h3 {
            font-size: 1.5rem;
            margin: 2.5rem 0 1rem;
            color: var(--primary);
        }
        .highlight {
            background-color: rgba(168, 218, 220, 0.2);
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            font-style: italic;
        }
        .featured-img {
            margin: 30px auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .featured-img figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray);
            padding: 10px;
            background-color: var(--gray-light);
        }
        .content-link {
            color: var(--primary);
            font-weight: bold;
            border-bottom: 1px dotted var(--primary);
        }
        .content-link:hover {
            border-bottom-style: solid;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--primary);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: var(--gray-light);
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea, .score-form select, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: var(--font-body);
        }
        .comment-form button, .score-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
        }
        .comment-form button:hover, .score-form button:hover {
            background-color: var(--primary);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #ccc;
        }
        .related-links a {
            display: block;
            padding: 5px 0;
        }
        .related-links a:hover {
            padding-left: 10px;
        }
        .footer-links-section {
            background-color: var(--secondary);
            padding: 50px 20px;
            color: white;
        }
        .footer-links-section h3 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--accent);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent);
            display: block;
            text-align: center;
            font-weight: 500;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 40px 20px;
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--gray);
            color: var(--gray-light);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--secondary);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                padding: 40px 30px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 280px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
