        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
        }
        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;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #38bdf8;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #38bdf8, #0ea5e9);
            border-radius: 2px;
        }
        .content-block {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid #3b82f6;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.4);
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.1rem;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.5em;
            margin-bottom: 0.8em;
        }
        h1 { font-size: 3.5rem; color: #7dd3fc; }
        h2 { font-size: 2.5rem; color: #38bdf8; }
        h3 { font-size: 2rem; color: #22d3ee; }
        h4 { font-size: 1.5rem; color: #67e8f9; }
        ul, ol {
            padding-left: 2em;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.5em;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        em {
            color: #a5b4fc;
            font-style: italic;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, #475569, transparent);
            margin: 40px 0;
        }
        header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #94a3b8;
            background: rgba(30, 41, 59, 0.5);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e1;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .sidebar-widget {
            background: rgba(30, 41, 59, 0.9);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border-top: 5px solid #8b5cf6;
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #a78bfa;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            font-size: 1.3rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #60a5fa;
        }
        button, .btn {
            padding: 12px 24px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #1d4ed8, #1e40af);
            transform: scale(1.03);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #475569;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #fbbf24;
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .internal-links a {
            background: rgba(59, 130, 246, 0.15);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid #3b82f6;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .internal-links a:hover {
            background: rgba(59, 130, 246, 0.3);
            transform: translateY(-3px);
        }
        .update-info {
            background: rgba(34, 197, 94, 0.1);
            border-left: 5px solid #22c55e;
            padding: 15px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .update-info i {
            color: #22c55e;
            font-size: 1.5rem;
        }
        footer {
            background: #0a0f1c;
            padding: 60px 0 30px;
            margin-top: 60px;
            border-top: 1px solid #334155;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        friend-link {
            display: block;
            padding: 10px 0;
            border-bottom: 1px dashed #475569;
        }
        friend-link a {
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link a:hover {
            color: #60a5fa;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.8rem; }
            .section-title { font-size: 2rem; }
            .hero { padding: 70px 0; }
            .hero p { font-size: 1.1rem; }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .content-block {
                padding: 20px;
            }
        }
