        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            padding: 20px 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: 2.5rem;
            font-weight: 900;
            color: #ff9e00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px #000;
        }
        .logo a:hover {
            color: #ffd166;
        }
        .logo span {
            color: #06d6a0;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
        }
        nav ul li a:hover {
            background: rgba(0, 180, 216, 0.2);
            transform: translateY(-2px);
        }
        .search-form {
            display: flex;
            margin-left: 30px;
        }
        .search-form input {
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            background: #333;
            color: #fff;
            width: 200px;
        }
        .search-form button {
            background: #00b4d8;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 10px 20px;
            cursor: pointer;
            color: white;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #0077b6;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9e00;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                padding: 20px;
                gap: 15px;
            }
            nav ul.active {
                display: flex;
            }
            .search-form {
                margin-left: 0;
                margin-top: 20px;
                width: 100%;
            }
            .search-form input {
                width: 100%;
            }
            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(255, 158, 0, 0.1);
            border-radius: 15px;
        }
        .article-header h1 {
            font-size: 3rem;
            color: #ff9e00;
            margin-bottom: 15px;
            text-shadow: 1px 1px 5px #000;
        }
        .article-header p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            color: #06d6a0;
            margin: 30px 0 15px;
            font-size: 2.2rem;
            border-left: 5px solid #00b4d8;
            padding-left: 15px;
        }
        .article-content h3 {
            color: #90e0ef;
            margin: 25px 0 12px;
            font-size: 1.8rem;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            color: #e0e0e0;
            line-height: 1.8;
        }
        .article-content strong {
            color: #ffd166;
            font-weight: 700;
        }
        .highlight {
            background: rgba(255, 209, 102, 0.2);
            padding: 15px;
            border-left: 4px solid #ff9e00;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .sidebar h3 {
            color: #ff9e00;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .user-actions {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .comment-form, .rating-form {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 10px;
        }
        .comment-form h4, .rating-form h4 {
            color: #90e0ef;
            margin-bottom: 15px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            background: #333;
            color: #fff;
            border: 1px solid #555;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            background: #00b4d8;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 10px;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #0077b6;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .rating-stars .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffd700;
        }
        .long-tail-links {
            background: rgba(0, 0, 0, 0.7);
            padding: 30px 0;
            margin-top: 40px;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 180, 216, 0.2);
            transform: translateY(-3px);
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 30px 0;
            text-align: center;
            color: #aaa;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        footer p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        footer a {
            color: #00b4d8;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #00b4d8, transparent);
            margin: 40px 0;
        }
