        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2d3748;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7, #69db7c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 50px;
            color: #cbd5e0;
        }
        .desktop-nav a:hover {
            background: rgba(77, 171, 247, 0.15);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #cbd5e0;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a202c;
            padding: 20px;
            border-top: 1px solid #2d3748;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from {opacity: 0; transform: translateY(-10px);}
            to {opacity: 1; transform: translateY(0);}
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            padding: 20px;
            background: rgba(26, 32, 44, 0.7);
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .breadcrumb a {
            color: #a0aec0;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, #2d3748 0%, transparent 70%);
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #ffa94d, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #cbd5e0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #374151;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #4dabf7;
            color: #e2e8f0;
        }
        h3 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: #cbd5e0;
        }
        h4 {
            font-size: 1.4rem;
            margin: 30px 0 15px;
            color: #a0aec0;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #d1d5db;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid gold;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            padding: 20px;
            background: rgba(45, 55, 72, 0.5);
            border-radius: 12px;
        }
        .related-links a {
            background: rgba(77, 171, 247, 0.15);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        .related-links a:hover {
            background: rgba(77, 171, 247, 0.3);
        }
        aside {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #374151;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffa94d;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 14px;
            margin-bottom: 15px;
            border: 1px solid #4a5568;
            border-radius: 10px;
            background: #2d3748;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #4a5568;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        site-footer {
            margin-top: auto;
            background: #0f1419;
            padding: 60px 0 30px;
            border-top: 1px solid #2d3748;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-links {
            display: block;
            margin: 30px 0;
            padding: 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
        }
        friend-links a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            .hero { padding: 50px 20px; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 15px; }
            article, aside { padding: 25px; }
            .content-grid { gap: 25px; }
        }
