* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff9e00;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1b3a4b, #0d1b2a);
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff9e00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .logo span {
            color: #4cc9f0;
        }
        .logo:hover {
            transform: scale(1.02);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #e0e1dd;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav a:hover {
            background-color: #415a77;
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9e00;
        }
        .breadcrumb {
            background-color: #1b3a4b;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 5px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #4cc9f0;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        article {
            background-color: #1b3a4b;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ff9e00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #4cc9f0;
            margin: 2rem 0 1rem;
            border-left: 5px solid #ff9e00;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #9d4edd;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #415a77;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ff9e00;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.6);
            border: 3px solid #415a77;
        }
        .search-box, .comment-section, .rating-section {
            background-color: #0d1b2a;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 2px solid #415a77;
            border-radius: 5px;
            background-color: #1b3a4b;
            color: #e0e1dd;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4cc9f0;
        }
        button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #ff9e00, #ffcc00);
            color: #0d1b2a;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 158, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: #1b3a4b;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #415a77;
        }
        footer {
            background-color: #0d1b2a;
            padding: 2rem 0;
            text-align: center;
            border-top: 3px solid #ff9e00;
        }
        .copyright {
            margin-top: 1rem;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1b3a4b;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 10px 10px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
