        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0a;
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #ff6b00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff8c00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            padding: 15px 0;
            border-bottom: 3px solid #ff6b00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ff6b00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #fff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #ff6b00;
            color: #000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b00;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #222;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #888;
        }
        main {
            padding: 30px 0;
            background-color: #111;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(to right, #1e1e1e, #333);
            border-radius: 10px;
            border-left: 5px solid #ff6b00;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #ff6b00;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #aaa;
            font-style: italic;
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            background-color: #1a1a1a;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .article-content h2 {
            color: #ff8c00;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #ffa94d;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ff6b00;
            font-weight: 700;
        }
        .article-content em {
            color: #ffcc99;
        }
        .highlight {
            background-color: #332200;
            padding: 15px;
            border-left: 4px solid #ff6b00;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #444;
            box-shadow: 0 8px 16px rgba(0,0,0,0.6);
            max-width: 80%;
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            color: #bbb;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        .search-section, .comments-section, .rating-section {
            background-color: #222;
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
            border: 1px solid #444;
        }
        .search-section h3, .comments-section h3, .rating-section h3 {
            color: #ff8c00;
            margin-bottom: 15px;
        }
        .search-form, .comment-form, .rating-form {
            display: grid;
            gap: 15px;
            max-width: 600px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 5px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px;
            border: 1px solid #555;
            border-radius: 5px;
            background-color: #333;
            color: #fff;
            font-size: 1rem;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #ff6b00;
            box-shadow: 0 0 5px rgba(255,107,0,0.5);
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(to right, #ff6b00, #ff8c00);
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            justify-self: start;
        }
        button:hover {
            background: linear-gradient(to right, #ff8c00, #ffa500);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,107,0,0.3);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .internal-links {
            margin: 30px 0;
            padding: 20px;
            background-color: #252525;
            border-radius: 8px;
            border: 1px dashed #666;
        }
        .internal-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .internal-links li a {
            color: #ffcc99;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .internal-links li a::before {
            content: "➤";
            color: #ff6b00;
        }
        footer {
            background-color: #1a1a1a;
            padding: 40px 0 20px;
            border-top: 3px solid #ff6b00;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #222;
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid #ff6b00;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(5px);
            background-color: #2a2a2a;
        }
        .web-link a {
            color: #ffcc99;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a1a1a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.5);
                border-top: 2px solid #ff6b00;
            }
            #nav-toggle:checked ~ .nav-links {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 12px;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.5rem;
            }
            .article-content h3 {
                font-size: 1.2rem;
            }
            .internal-links ul {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            .logo {
                font-size: 1.5rem;
            }
            .article-header {
                padding: 15px;
            }
            .search-section, .comments-section, .rating-section {
                padding: 15px;
            }
        }
