        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background-color: #0a0a0a;
            background-image: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd43b;
        }
        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: 10px 20px;
            background: linear-gradient(90deg, #ff6b00, #ff8c00);
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        }
        .section {
            padding: 40px 0;
            border-bottom: 1px solid #333;
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd43b, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd43b;
        }
        .mobile-nav {
            display: none;
            background: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #333;
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #111;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #ffd43b;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle, #1a1a2e 0%, #0a0a0a 100%);
            border-bottom: 3px solid #ffd43b;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffd43b;
            text-shadow: 0 2px 10px rgba(255, 212, 59, 0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid #444;
        }
        .search-box h2 {
            margin-bottom: 15px;
            color: #ffd43b;
        }
        .search-box form {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 12px;
            border: 2px solid #444;
            border-radius: 5px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .search-box input:focus {
            outline: none;
            border-color: #ffd43b;
        }
        .content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: rgba(30, 30, 46, 0.7);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article h2, .article h3 {
            color: #ffd43b;
            margin: 25px 0 15px;
            border-left: 5px solid #ff6b00;
            padding-left: 15px;
        }
        .article p {
            margin-bottom: 20px;
            text-align: justify;
            color: #ddd;
        }
        .article strong {
            color: #ffd43b;
            font-weight: 700;
        }
        .article em {
            color: #4dabf7;
            font-style: italic;
        }
        .highlight {
            background: rgba(255, 212, 59, 0.1);
            border-left: 4px solid #ffd43b;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 10px;
            border: 3px solid #ffd43b;
            box-shadow: 0 5px 20px rgba(255, 212, 59, 0.3);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
        }
        .sidebar {
            background: rgba(30, 30, 46, 0.7);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .sidebar h3 {
            color: #ffd43b;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff6b00;
        }
        .comments, .rating {
            margin-top: 40px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .comment-form input, .comment-form textarea, .rating-form select {
            padding: 12px;
            border: 2px solid #444;
            border-radius: 5px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .stars i {
            color: #444;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .stars i:hover, .stars i.active {
            color: #ffd43b;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 40px 0;
            background: #111;
        }
        @media (max-width: 992px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            padding: 15px;
            background: #1a1a2e;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #222244;
        }
        .web-link a {
            display: block;
            font-weight: 600;
            color: #4dabf7;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            background: #0a0a0a;
            color: #aaa;
            border-top: 1px solid #333;
        }
        footer p {
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
