        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #E10600; 
            --secondary: #0078D4; 
            --dark: #1A1A1A;
            --light: #F5F5F5;
            --gray: #333;
            --text: #E0E0E0;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        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: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary), #FF4D4D);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(225, 6, 0, 0.3);
        }
        header {
            background-color: rgba(26, 26, 26, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--gray);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-nav a {
            color: var(--text);
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-bottom: 1px solid #444;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #252525;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: white;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 8px;
        }
        main {
            padding: 40px 20px;
            background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px dashed var(--primary);
        }
        h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #aaa;
            font-style: italic;
            margin-top: 15px;
        }
        .content-section {
            margin-bottom: 60px;
        }
        h2 {
            font-size: 2.2rem;
            color: white;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            font-size: 1.8rem;
            color: #FFCC00;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(225, 6, 0, 0.1), rgba(0, 120, 212, 0.1));
            border-left: 5px solid var(--primary);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        .image-wrapper {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .image-wrapper img {
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid var(--primary);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
        }
        .interactive-box {
            background-color: #252525;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .interactive-box h3 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .rating-stars i {
            color: #FFCC00;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: #333;
            color: white;
            font-size: 1rem;
            width: 100%;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 20px;
        }
        .form-group {
            flex: 1;
        }
        .search-container {
            margin: 40px 0;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            border-radius: 30px 0 0 30px;
            padding-left: 25px;
            border-right: none;
        }
        .search-box button {
            background: linear-gradient(135deg, var(--primary), #FF4D4D);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
            padding: 30px;
            background-color: #252525;
            border-radius: 15px;
        }
        .web-link a {
            color: #00B4D8;
            display: block;
            padding: 10px 15px;
            background-color: #333;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateX(5px);
        }
        footer {
            background-color: #111;
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid var(--primary);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .form-row { flex-direction: column; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .web-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .header-container { padding: 15px; }
            .logo a { font-size: 1.8rem; }
            .article-header { padding: 20px; }
        }
