* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #339af0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 20px 0;
            border-bottom: 2px solid #339af0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #339af0, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav ul li a:hover {
            background-color: rgba(51, 154, 240, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
            min-height: 100vh;
        }
        article {
            background-color: #1a2332;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #4dabf7;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #339af0;
            border-left: 5px solid #339af0;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #69c0ff;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(51, 154, 240, 0.1);
            border-left: 4px solid #339af0;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            border: 3px solid #339af0;
        }
        .interactive-section {
            background-color: #222b3a;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #4dabf7;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #339af0;
            border-radius: 8px 0 0 8px;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #339af0;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #1c7ed6;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #444;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #339af0;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #1c7ed6;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            margin: 15px 0;
        }
        .star-rating i {
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffc107;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background-color: #1a2332;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #222b3a;
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #0a0e14;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid #339af0;
        }
        .copyright {
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav { display: none; width: 100%; order: 3; margin-top: 20px; }
            nav.active { display: block; }
            nav ul { flex-direction: column; gap: 10px; }
            .hamburger { display: block; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            article { padding: 20px; }
            .footer-links { grid-template-columns: 1fr; }
        }
