        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c, #1a1a2e);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ff6b35;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9e6d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            border-bottom: 2px solid #ff6b35;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b35, #ffdd00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(255, 107, 53, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b35;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ff9e6d;
        }
        .search-box {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }
        .search-box input {
            width: 70%;
            padding: 12px 20px;
            border: 2px solid #ff6b35;
            border-radius: 50px 0 0 50px;
            background: #222;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            padding: 12px 30px;
            border: none;
            border-radius: 0 50px 50px 0;
            background: #ff6b35;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #ff8535;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffdd00;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            margin: 30px 0 15px;
            color: #ff6b35;
            border-left: 5px solid #ff6b35;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: #ff9e6d;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 107, 53, 0.15);
            border-left: 4px solid #ff6b35;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-image {
            margin: 30px auto;
            text-align: center;
        }
        .article-image img {
            border-radius: 10px;
            border: 3px solid #ff6b35;
            box-shadow: 0 5px 15px rgba(255,107,53,0.3);
            transition: transform 0.5s;
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-section, .rating-section {
            background: rgba(40, 40, 60, 0.8);
            padding: 25px;
            border-radius: 10px;
        }
        .rating-section {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            margin: 15px 0;
            color: #ffdd00;
        }
        .stars i {
            cursor: pointer;
            margin: 0 5px;
            transition: color 0.3s;
        }
        form label {
            display: block;
            margin: 10px 0 5px;
            font-weight: bold;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 12px;
            border: 1px solid #555;
            border-radius: 5px;
            background: #222;
            color: #fff;
            margin-bottom: 15px;
        }
        form button {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        form button:hover {
            background: #ff8535;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255,107,53,0.2);
        }
        footer {
            background: rgba(5, 5, 15, 0.95);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid #ff6b35;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10,10,20,0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #333;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .search-box input {
                width: 60%;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .search-box input {
                width: 100%;
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-box button {
                width: 100%;
                border-radius: 50px;
            }
            .user-interaction {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
