* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        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: #38bdf8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #38bdf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #38bdf8;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #1e293b;
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        .breadcrumb span {
            color: #cbd5e1;
            margin: 0 8px;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: #1e293b;
                width: 80%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1531315630201-bb15abeb1653?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #cbd5e1;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        main {
            background-color: #1e293b;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3, h4 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            color: #f8fafc;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 5px solid #f59e0b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #60a5fa;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.8rem;
            color: #38bdf8;
        }
        h4 {
            font-size: 1.5rem;
            color: #a5b4fc;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        em {
            color: #fbbf24;
            font-style: italic;
        }
        strong {
            color: #f8fafc;
            font-weight: 700;
        }
        .highlight {
            background-color: rgba(96, 165, 250, 0.15);
            border-left: 4px solid #60a5fa;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #334155;
        }
        .caption {
            font-size: 0.95rem;
            color: #94a3b8;
            margin-top: 0.8rem;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        aside {
            background-color: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 100px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: #fbbf24;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #374151;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            background-color: #0f172a;
            border: 1px solid #475569;
            border-radius: 8px 0 0 8px;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #2563eb;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #fbbf24;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: #0f172a;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #e2e8f0;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: #10b981;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #059669;
        }
        .related-links a {
            display: block;
            padding: 0.7rem 0;
            border-bottom: 1px dashed #475569;
            color: #cbd5e1;
        }
        .related-links a:hover {
            color: #60a5fa;
            padding-left: 5px;
        }
        .related-links a:last-child {
            border-bottom: none;
        }
        .site-footer {
            background-color: #0f172a;
            border-top: 1px solid #334155;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #60a5fa;
            margin-bottom: 1rem;
        }
        .friend-links {
            margin: 2rem 0;
        }
        friend-link {
            display: inline-block;
            background-color: #1e293b;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            margin-right: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #475569;
        }
        friend-link a {
            color: #94a3b8;
        }
        friend-link a:hover {
            color: #60a5fa;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
            width: 100%;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
            color: white;
        }
        .tag {
            display: inline-block;
            background-color: #374151;
            color: #d1d5db;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .divider {
            height: 1px;
            background-color: #334155;
            margin: 2.5rem 0;
        }
