        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #6ee7ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9a00;
            text-shadow: 0 0 8px rgba(255, 154, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 12, 41, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff9a00, #6ee7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1.5px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: initial;
            color: inherit;
        }
        .logo a:hover {
            color: inherit;
            text-shadow: 0 0 15px rgba(110, 231, 255, 0.8);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 20px;
            background: rgba(255, 154, 0, 0.1);
        }
        .nav-desktop a:hover {
            background: rgba(255, 154, 0, 0.3);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(15, 12, 41, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #302b63;
            font-size: 1.2rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #6ee7ff;
        }
        .breadcrumb a:hover {
            color: #ff9a00;
        }
        main {
            padding: 30px 0;
            background: rgba(36, 36, 62, 0.7);
            border-radius: 15px;
            margin: 20px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 25px;
            color: #ff9a00;
            text-align: center;
            text-shadow: 0 0 15px rgba(255, 154, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #6ee7ff;
            border-left: 5px solid #ff9a00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #b19cd9;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(255, 154, 0, 0.15);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ff9a00;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        b, strong {
            color: #ffcc00;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #6ee7ff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.03);
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(48, 43, 99, 0.8);
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .search-box h2, .comment-form h2, .rating-form h2 {
            border-left: none;
            text-align: center;
            color: #ff9a00;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #6ee7ff;
            background: rgba(15, 12, 41, 0.8);
            color: #e0e0ff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff9a00;
            box-shadow: 0 0 12px rgba(255, 154, 0, 0.5);
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #ff9a00, #ff6b6b);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 154, 0, 0.4);
            background: linear-gradient(90deg, #ff6b6b, #ff9a00);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ffcc00;
        }
        .stars input {
            display: none;
        }
        .stars label {
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ff9a00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(15, 12, 41, 0.9);
            border-radius: 15px;
        }
        .web-link {
            background: rgba(48, 43, 99, 0.7);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-8px);
            background: rgba(255, 154, 0, 0.2);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: bold;
        }
        footer {
            background: #0f0c29;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid #302b63;
        }
        .copyright {
            margin-top: 30px;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
                padding: 0 5px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article > * {
            animation: fadeIn 0.8s ease-out;
        }
