* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            padding: 20px 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fbbf24;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
        }
        .logo a {
            color: inherit;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: #334155;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            color: #fbbf24;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #38bdf8;
            margin: 40px 0 20px;
            border-left: 5px solid #fbbf24;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #a78bfa;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #334155;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #fbbf24;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #94a3b8;
        }
        .link-list {
            margin: 30px 0;
            padding: 20px;
            background-color: #0f172a;
            border-radius: 10px;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        .link-list li {
            padding: 10px;
            background-color: #1e293b;
            border-radius: 8px;
        }
        .link-list a {
            display: block;
            padding: 10px;
            font-weight: 600;
        }
        aside {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #fbbf24;
            font-size: 1.5rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px;
            border: 2px solid #475569;
            border-radius: 8px 0 0 8px;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #fbbf24;
            color: #0f172a;
            border: none;
            padding: 12px 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #f59e0b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #94a3b8;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #fbbf24;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 2px solid #475569;
            border-radius: 8px;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button[type="submit"] {
            background-color: #38bdf8;
            color: #0f172a;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        button[type="submit"]:hover {
            background-color: #0ea5e9;
        }
        footer {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            padding: 40px 0 20px;
            border-top: 2px solid #334155;
            margin-top: 40px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #0f172a;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #334155;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .nav-toggle {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                gap: 15px;
                margin-top: 20px;
                width: 100%;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 25px;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .link-list ul {
                grid-template-columns: 1fr;
            }
        }
