        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ff6b35;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffa500;
            text-shadow: 0 0 8px rgba(255, 107, 53, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid #333;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(20, 20, 30, 0.95);
            padding: 1rem 0;
            border-bottom: 3px solid #ff6b35;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffa500;
        }
        .logo a:hover {
            color: #ffa500;
            transform: scale(1.05);
            transition: transform 0.3s;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 107, 53, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b35;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(30, 30, 40, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 2px solid #ff6b35;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid #444;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(40, 40, 50, 0.8);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ff6b35;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: rgba(30, 30, 40, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffa500;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.3;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff6b35;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid #ffa500;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #2a2a3e, #3a3a4e);
            border-left: 5px solid #ff6b35;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .note {
            background: rgba(255, 215, 0, 0.1);
            border: 1px dashed #ffcc00;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        strong {
            color: #ffcc00;
            font-weight: 800;
        }
        em {
            color: #aaa;
            font-style: italic;
        }
        .content-img {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .content-img img {
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .content-img img:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 30px rgba(255, 107, 53, 0.4);
        }
        .content-img figcaption {
            margin-top: 10px;
            font-size: 0.95rem;
            color: #aaa;
            font-style: italic;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .search-box, .comment-box, .rating-box {
            background: rgba(40, 40, 50, 0.9);
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid #444;
            transition: all 0.3s ease;
        }
        .search-box:hover, .comment-box:hover, .rating-box:hover {
            border-color: #ff6b35;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
        }
        .interactive-section h3 {
            color: #ffa500;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #666;
            background: #1e1e2e;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            background: linear-gradient(90deg, #ff8c42, #ff6b35);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .stars input:checked ~ label {
            color: #ffcc00;
        }
        .footer-links {
            background: rgba(20, 20, 30, 0.95);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 3px solid #444;
        }
        .footer-links h3 {
            text-align: center;
            color: #ffa500;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 40, 50, 0.7);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #ff6b35;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(60, 60, 70, 0.9);
            transform: translateX(10px);
        }
        .web-link a {
            color: #ccc;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            color: #ffa500;
        }
        .site-footer {
            background: #0c0c0c;
            color: #888;
            text-align: center;
            padding: 2rem 0;
            border-top: 2px solid #333;
        }
        .site-footer p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .social-icons a {
            color: #888;
            font-size: 1.5rem;
            transition: color 0.3s, transform 0.3s;
        }
        .social-icons a:hover {
            color: #ff6b35;
            transform: scale(1.2);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 1.8rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .web-links-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .logo a { font-size: 1.8rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .content-img { margin: 1.5rem auto; }
            .breadcrumb ol { font-size: 0.9rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .interactive-section, .footer-links {
            animation: fadeIn 1s ease-out;
        }
