* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #4cd137;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #1e2a3a;
        }
        h1, h2, h3, h4 {
            color: #fbc531;
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-shadow: 0 2px 10px rgba(251, 197, 49, 0.3);
        }
        h2 {
            font-size: 2.4rem;
            border-left: 5px solid #00a8ff;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #9c88ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #bdc3c7;
            font-weight: 300;
        }
        .highlight {
            background: linear-gradient(90deg, #192a56, #273c75);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #fbc531;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.4em;
            margin-right: 8px;
        }
        b, strong {
            color: #fbc531;
            font-weight: 700;
        }
        header {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #fbc531, #e84118);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav li {
            margin-left: 30px;
        }
        nav a {
            color: #dcdde1;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav a:hover, nav a.active {
            background-color: rgba(251, 197, 49, 0.15);
            color: #fbc531;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fbc531;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #141d2f;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #7f8fa6;
        }
        .breadcrumb a:hover {
            color: #00a8ff;
        }
        .search-box {
            margin: 40px auto;
            max-width: 600px;
            text-align: center;
        }
        .search-form {
            display: flex;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: #1a2332;
            color: #fff;
        }
        .search-button {
            background: linear-gradient(45deg, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(45deg, #0097e6, #00a8ff);
        }
        .hero-image {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
        }
        .hero-image img {
            width: 100%;
            transition: transform 0.8s ease;
        }
        .hero-image:hover img {
            transform: scale(1.03);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .sidebar {
            background-color: #141d2f;
            padding: 25px;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            margin-top: 0;
        }
        .rating-widget, .comment-widget {
            background-color: #1a2332;
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .stars {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            gap: 10px;
        }
        .star {
            font-size: 2rem;
            color: #7f8fa6;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbc531;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-input, .form-textarea {
            padding: 15px;
            background-color: #0a0e17;
            border: 1px solid #2f3640;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background: linear-gradient(45deg, #44bd32, #4cd137);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(76, 209, 55, 0.4);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background-color: #141d2f;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid #2f3640;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #00a8ff;
            box-shadow: 0 10px 20px rgba(0, 168, 255, 0.1);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, #0c2461 0%, #1b1464 100%);
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #fbc531;
            margin-bottom: 20px;
        }
        .footer-links a {
            display: block;
            margin-bottom: 10px;
            color: #dcdde1;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2f3640;
            color: #7f8fa6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .logo { margin-bottom: 15px; }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            nav.active ul {
                display: flex;
            }
            nav li {
                margin: 10px 0;
                margin-left: 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .toc {
            background-color: #1a2332;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .toc a {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #2f3640;
        }
        .toc a:last-child {
            border-bottom: none;
        }
