        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #ff6b35;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9e6d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff6b35;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b35, #ff9e6d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(255, 107, 53, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b35;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(30, 30, 46, 0.8);
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #888;
        }
        .search-bar {
            background: rgba(255,255,255,0.05);
            border: 1px solid #444;
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        .search-bar input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-bar button {
            background: #ff6b35;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: #ff9e6d;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: rgba(20, 20, 35, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border-left: 5px solid #ff6b35;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #fff;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: #ff9e6d;
            border-bottom: 2px dashed #444;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ffcc00;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 107, 53, 0.15);
            border-left: 4px solid #ff6b35;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border: 3px solid #444;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .interactive-section {
            background: rgba(30, 30, 46, 0.9);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 1rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid #555;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            background: linear-gradient(90deg, #ff6b35, #ff9e6d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .comment-form button:hover, .rating-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars i {
            color: #ffcc00;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .footer-links {
            background: rgba(10,10,20,0.9);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 1.2rem;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255,107,53,0.1);
            border-color: #ff6b35;
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
            font-size: 1.1rem;
        }
        footer {
            background: #0a0a0f;
            text-align: center;
            padding: 2rem;
            border-top: 2px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.85rem;
        }
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                gap: 1rem;
            }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10,10,15,0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #444;
            }
            nav.active ul {
                display: flex;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .web-link-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            .web-link-grid {
                grid-template-columns: 1fr;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
        }
