        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: #f5f5f5;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #4a69bd;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9f1a;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ff9f1a;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #ff9f1a, #ffd32a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: initial;
            color: inherit;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-menu li a {
            color: #f5f5f5;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-menu li a:hover {
            background: #4a69bd;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9f1a;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ff9f1a;
        }
        .search-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        .search-box h2 {
            margin-bottom: 15px;
            color: #ffd32a;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            background: #fff;
            color: #333;
        }
        .search-button {
            padding: 15px 25px;
            background: #ff9f1a;
            color: #000;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #ffd32a;
        }
        main {
            flex: 1;
            padding: 25px 0;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #ff9f1a;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            color: #4a69bd;
            margin: 35px 0 20px;
            border-left: 5px solid #ff9f1a;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffd32a;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(255, 159, 26, 0.2);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ff9f1a;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .image-container img {
            max-width: 800px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .comment-section, .rating-section {
            background: rgba(255, 255, 255, 0.08);
            padding: 25px;
            border-radius: 15px;
        }
        .comment-section h3, .rating-section h3 {
            color: #ff9f1a;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .comment-input, .rating-input {
            padding: 15px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffd32a;
            cursor: pointer;
        }
        .submit-button {
            padding: 15px;
            background: #4a69bd;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background: #1e3799;
        }
        footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 18px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 159, 26, 0.2);
        }
        .web-link a {
            color: #ffd32a;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                position: absolute;
                top: 80px;
                left: 0;
                padding: 20px;
                border-radius: 0 0 15px 15px;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .user-interaction {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
        }
        .bold {
            font-weight: 800;
            color: #ffd32a;
        }
        .new-line {
            display: block;
            margin-top: 10px;
        }
