        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e4e4e4;
            background: #0f1923;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #0f1923;
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff4655, #0f1923);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background: rgba(255, 70, 85, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background: #1a2634;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #8b9cb3;
        }
        .breadcrumb span {
            color: #ff4655;
        }
        .search-section {
            background: #1a2634;
            padding: 30px 0;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            overflow: hidden;
        }
        .search-box input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            font-size: 1.1rem;
            background: #2a3a50;
            color: #fff;
        }
        .search-box button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #e63e4c;
        }
        main {
            padding: 40px 0;
            background: #0f1923;
        }
        article {
            background: #1a2634;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #ff4655;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3a50;
        }
        h3 {
            font-size: 1.6rem;
            color: #8b9cb3;
            margin: 25px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #a6b5cb;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #c8d1e0;
            font-weight: 500;
            margin-bottom: 30px;
            text-align: center;
            padding: 20px;
            background: rgba(42, 58, 80, 0.5);
            border-radius: 8px;
            border-left: 4px solid #ff4655;
        }
        .highlight {
            background: rgba(255, 70, 85, 0.1);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #ff4655;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 8px;
            border: 2px solid #2a3a50;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #8b9cb3;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        blockquote {
            border-left: 5px solid #ff4655;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #c8d1e0;
            background: rgba(42, 58, 80, 0.3);
            padding: 25px;
            border-radius: 0 8px 8px 0;
        }
        .keyword-link {
            font-weight: 700;
            background: rgba(255, 70, 85, 0.2);
            padding: 3px 8px;
            border-radius: 4px;
        }
        .rating-section, .comments-section {
            background: #1a2634;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #444;
            margin: 15px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        input, textarea, select {
            padding: 14px;
            background: #2a3a50;
            border: 1px solid #3a4a60;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: #ff4655;
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            justify-self: start;
        }
        button[type="submit"]:hover {
            background: #e63e4c;
        }
        .footer-links {
            background: #1a2634;
            padding: 40px 0;
            border-top: 2px solid #2a3a50;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 12px 20px;
            background: #2a3a50;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #3a4a60;
            transform: translateY(-3px);
        }
        footer {
            background: #0f1923;
            color: #8b9cb3;
            text-align: center;
            padding: 30px 0;
            border-top: 2px solid #ff4655;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .copyright {
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .container { padding: 0 15px; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #0f1923;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
                border-top: 1px solid #2a3a50;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 10px 0;
            }
            .search-box input {
                padding: 14px;
                font-size: 1rem;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            article { padding: 25px; }
            .lead { font-size: 1.1rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.4rem; }
            article { padding: 20px; }
            .rating-section, .comments-section { padding: 20px; }
            .star-rating { font-size: 1.8rem; }
            .web-link {
                display: block;
                margin: 10px 0;
            }
        }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .emoji { font-size: 1.2em; }
