* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: #f97316;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #fdba74;
            text-shadow: 0 0 10px #f97316;
        }
        .search-box {
            display: flex;
            background: #475569;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 2rem;
        }
        .search-box input {
            flex-grow: 1;
            border: none;
            background: transparent;
            color: white;
            padding: 0.75rem 1rem;
            outline: none;
        }
        .search-box button {
            background: #f97316;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ea580c;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            justify-content: center;
            padding: 1rem 0;
            flex-wrap: wrap;
        }
        nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav a:hover, nav a.active {
            background: #f97316;
            color: white;
            transform: translateY(-2px);
        }
        .breadcrumb {
            padding: 1rem 0;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #f97316;
            text-decoration: none;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            background: #1e293b;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        h1 {
            color: #f97316;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            color: #fdba74;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f97316;
        }
        h3 {
            color: #fed7aa;
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(249, 115, 22, 0.2);
            border-left: 5px solid #f97316;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            border: 5px solid #475569;
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 0.5rem;
        }
        aside {
            background: #1e293b;
            border-radius: 16px;
            padding: 1.5rem;
            height: fit-content;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: #fdba74;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
            justify-content: center;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #fbbf24;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.75rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #0f172a;
            color: white;
        }
        button[type="submit"] {
            background: #f97316;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: #ea580c;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #1e293b;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #f97316;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #f1f5f9;
            text-decoration: none;
            font-weight: 600;
        }
        footer {
            background: #1e293b;
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
            border-top: 5px solid #f97316;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                margin: 1rem 0 0;
                max-width: 100%;
            }
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                flex-direction: column;
                display: none;
                background: #1e293b;
                border-radius: 8px;
                padding: 1rem;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
