* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1e293b;
            padding: 20px 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #22d3ee;
            text-shadow: 0 0 10px #22d3ee;
        }
        .search-box {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            padding: 10px 15px;
            border: 1px solid #475569;
            border-radius: 25px;
            background-color: #334155;
            color: #f1f5f9;
            width: 250px;
        }
        .search-box button {
            padding: 10px 20px;
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-box button:hover {
            background-color: #2563eb;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #334155;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #22d3ee;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        main {
            padding: 40px 0;
        }
        article {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #22d3ee;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #38bdf8;
            margin: 30px 0 15px;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #60a5fa;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #334155;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #22d3ee;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .links-in-content a {
            color: #22d3ee;
            font-weight: bold;
        }
        .user-sections {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }
        .comments, .rating {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 15px;
        }
        .comments h2, .rating h2 {
            border-left: none;
            text-align: center;
            color: #fbbf24;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        form input, form textarea, form select {
            padding: 12px;
            border: 1px solid #475569;
            border-radius: 8px;
            background-color: #334155;
            color: #f1f5f9;
        }
        form button {
            padding: 12px;
            background-color: #10b981;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        form button:hover {
            background-color: #059669;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.5rem;
            color: #fbbf24;
            margin-bottom: 15px;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 50px;
            padding: 30px;
            background-color: #1e293b;
            border-radius: 15px;
        }
        .web-link {
            background-color: #334155;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #475569;
        }
        .web-link a {
            color: #f1f5f9;
            font-weight: 500;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 2px solid #334155;
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            .internal-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .user-sections {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box input {
                width: 200px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 15px;
                background-color: #1e293b;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                padding: 20px;
                border-top: 1px solid #334155;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .internal-links {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .internal-links {
                grid-template-columns: 1fr;
            }
            .search-box input {
                width: 150px;
            }
        }
