* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        :root {
            --primary: #c62828;
            --primary-dark: #8e0000;
            --secondary: #ff9800;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #111;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 26, 0.95);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo:hover {
            color: var(--secondary);
        }
        .logo:hover span {
            color: var(--primary);
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid var(--gray);
            border-right: none;
            border-radius: 30px 0 0 30px;
            background: #333;
            color: white;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .search-btn:hover {
            background: var(--primary-dark);
        }
        nav {
            position: relative;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 30px;
            padding: 15px 0;
            border-top: 1px solid #333;
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-desktop a:hover {
            background: rgba(198, 40, 40, 0.1);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            list-style: none;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: var(--shadow);
            border-radius: 0 0 10px 10px;
            overflow: hidden;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ccc;
            padding: 18px 25px;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-mobile a:hover {
            background: var(--primary);
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #1a1a1a;
            border-bottom: 1px solid #333;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb span {
            color: var(--secondary);
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            background: linear-gradient(to bottom, #111, #1a1a1a);
        }
        article {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
            border: 1px solid #333;
        }
        h1 {
            color: var(--secondary);
            font-size: 3rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary-dark);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #ccc;
            font-size: 1.4rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #ffcc80;
            font-weight: 500;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(198, 40, 40, 0.1);
            border-left: 5px solid var(--secondary);
            border-radius: 5px;
        }
        .highlight {
            background: rgba(255, 152, 0, 0.15);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary);
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: #262626;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 5px solid var(--primary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .stat-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .stat-card h4 {
            color: white;
            margin-bottom: 10px;
        }
        .stat-card p {
            color: #aaa;
            font-size: 1rem;
            margin-bottom: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
            margin: 30px auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            border: 3px solid #444;
        }
        .img-caption {
            text-align: center;
            color: #aaa;
            font-style: italic;
            margin-top: -20px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 5px solid var(--primary);
            padding: 20px 30px;
            margin: 30px 0;
            background: rgba(198, 40, 40, 0.08);
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #ffcc80;
        }
        blockquote p {
            margin-bottom: 10px;
        }
        .quote-author {
            text-align: right;
            color: var(--secondary);
            font-weight: bold;
        }
        ul, ol {
            margin: 20px 0 20px 30px;
            padding-left: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        .note {
            background: rgba(33, 150, 243, 0.1);
            border-left: 5px solid #2196f3;
            padding: 20px;
            border-radius: 5px;
            margin: 25px 0;
        }
        .warning {
            background: rgba(255, 193, 7, 0.1);
            border-left: 5px solid #ffc107;
            padding: 20px;
            border-radius: 5px;
            margin: 25px 0;
        }
        .interactive-section {
            background: #222;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #444;
        }
        .tabs {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 2px solid #444;
            margin-bottom: 25px;
        }
        .tab {
            padding: 15px 30px;
            background: #333;
            border: none;
            color: #ccc;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            border-radius: 8px 8px 0 0;
            margin-right: 5px;
        }
        .tab:hover {
            background: #444;
            color: white;
        }
        .tab.active {
            background: var(--primary);
            color: white;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .comments-section, .ratings-section {
            margin-top: 50px;
        }
        .comment-form, .rating-form {
            background: #262626;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            margin-bottom: 10px;
            color: #ccc;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background: #333;
            border: 2px solid #444;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: gold;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(198, 40, 40, 0.4);
        }
        .btn i {
            margin-right: 10px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 50px 0 40px;
        }
        .web-link {
            background: #222;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid var(--secondary);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #2a2a2a;
            transform: translateX(5px);
        }
        .web-link a {
            color: #e0e0e0;
            font-weight: 500;
            display: block;
            font-size: 1.05rem;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background: #0a0a0a;
            color: #aaa;
            padding: 40px 0 20px;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article { padding: 30px; }
            .header-top { flex-direction: column; gap: 20px; }
            .search-form { max-width: 100%; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .nav-mobile { position: static; border-radius: 0; }
            .stats-grid { grid-template-columns: 1fr; }
            .tabs { flex-direction: column; }
            .tab { border-radius: 8px; margin-bottom: 5px; }
            .web-links { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 20px; }
            .container { padding: 0 15px; }
        }
