        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00b4d8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            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;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #90e0ef, #00b4d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: rgba(0, 180, 216, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4d8;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #00b4d8;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background: rgba(20, 20, 30, 0.9);
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .article-section {
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #00b4d8;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            margin: 30px 0 15px;
            color: #90e0ef;
            border-left: 5px solid #0077b6;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 20px 0 10px;
            color: #caf0f8;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.2rem;
            color: #ddd;
            line-height: 1.9;
        }
        .highlight {
            background: rgba(0, 180, 216, 0.1);
            padding: 15px;
            border-left: 4px solid #00b4d8;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .search-box {
            background: rgba(10, 10, 20, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1.1rem;
            background: #222;
            color: #f0f0f0;
        }
        .search-box button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #0077b6, #00b4d8);
            border: none;
            border-radius: 0 5px 5px 0;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #00b4d8, #90e0ef);
        }
        .comment-section, .rating-section {
            background: rgba(10, 10, 20, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        .comment-section h2, .rating-section h2 {
            border-left: none;
            text-align: center;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #90e0ef;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #444;
            border-radius: 5px;
            background: #222;
            color: #f0f0f0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 15px 30px;
            background: linear-gradient(90deg, #0077b6, #00b4d8);
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #00b4d8, #90e0ef);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(20, 20, 30, 0.8);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(0, 180, 216, 0.2);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            color: #00b4d8;
        }
        footer {
            background: rgba(5, 5, 10, 0.95);
            padding: 30px 0;
            text-align: center;
            margin-top: 40px;
            border-top: 2px solid #0077b6;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 5px;
                margin-bottom: 10px;
            }
            .search-box button {
                border-radius: 5px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .featured-image {
                margin: 20px auto;
            }
        }
