        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #feda4a;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            border: 2px solid #1e2a47;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0a0e17 0%, #1a2238 100%);
            padding: 20px 0;
            border-bottom: 3px solid #feda4a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #feda4a, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            text-shadow: 0 4px 10px rgba(254, 218, 74, 0.7);
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #8a9bb2;
            width: 100%;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #feda4a;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .menu-toggle {
            display: none;
        }
        .menu-icon {
            display: none;
            font-size: 2rem;
            color: #feda4a;
            cursor: pointer;
            padding: 10px;
        }
        .navbar {
            display: flex;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-list a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            background-color: rgba(30, 42, 71, 0.8);
        }
        .nav-list a:hover {
            background-color: #feda4a;
            color: #0a0e17;
        }
        .search-bar {
            background-color: #121a2e;
            padding: 30px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .search-bar form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-bar input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: #1e2a47;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-bar button {
            background: linear-gradient(45deg, #feda4a, #e6b400);
            border: none;
            padding: 0 30px;
            color: #0a0e17;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-bar button:hover {
            background: linear-gradient(45deg, #ffed4a, #feda4a);
            transform: scale(1.05);
        }
        main {
            padding: 20px 0;
        }
        article {
            background-color: #121a2e;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: #feda4a;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 2px 5px #000;
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 5px solid #feda4a;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d6a7;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background-color: #1e2a47;
            border-left: 5px solid #feda4a;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        b, strong {
            color: #feda4a;
        }
        figure {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        figcaption {
            margin-top: 10px;
            font-size: 0.95rem;
            color: #8a9bb2;
            font-style: italic;
        }
        .user-interaction {
            background-color: #121a2e;
            padding: 40px;
            border-radius: 15px;
            margin-top: 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .rating-form, .comment-form {
            background-color: #1e2a47;
            padding: 25px;
            border-radius: 10px;
        }
        .rating-form label, .comment-form label {
            display: block;
            margin-bottom: 15px;
            font-weight: bold;
            color: #4fc3f7;
        }
        select, textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background-color: #0a0e17;
            border: 2px solid #4fc3f7;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .user-interaction button {
            background: linear-gradient(45deg, #4fc3f7, #0288d1);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .user-interaction button:hover {
            background: linear-gradient(45deg, #29b6f6, #4fc3f7);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
        }
        .web-links {
            background-color: #1a2238;
            padding: 40px 20px;
            margin: 40px 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #121a2e;
            padding: 18px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: #feda4a;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(254, 218, 74, 0.2);
        }
        .web-link a {
            color: #a5d6a7;
            font-weight: 600;
        }
        footer {
            background-color: #0a0e17;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #1e2a47;
            color: #8a9bb2;
            font-size: 0.95rem;
        }
        footer a {
            color: #4fc3f7;
            margin: 0 10px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-list { gap: 15px; }
            .nav-list a { padding: 6px 12px; font-size: 0.95rem; }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .menu-icon {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .navbar {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            .nav-list {
                flex-direction: column;
                gap: 10px;
            }
            .menu-toggle:checked ~ .navbar {
                display: flex;
            }
            .search-bar form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-bar input, .search-bar button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
            article, .user-interaction {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            p { font-size: 1rem; }
            .logo a { font-size: 1.8rem; }
            .user-interaction {
                grid-template-columns: 1fr;
            }
        }
