        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom right, #0c1a2d, #1a3a5f);
            color: #e0e0e0;
            max-width: 100%;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 { font-family: 'Arial Black', Gadget, sans-serif; color: #ff4655; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: 2.8rem; text-align: center; margin-top: 2rem; text-shadow: 0 2px 5px rgba(0,0,0,0.7); }
        h2 { font-size: 2.2rem; border-left: 5px solid #4CAF50; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #6ab7ff; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #ffcc00; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #6ab7ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ffcc00; text-shadow: 0 0 8px rgba(255, 204, 0, 0.5); }
        strong { color: #ffcc00; font-weight: 700; }
        em { color: #4CAF50; font-style: italic; }
        blockquote {
            border-left: 4px solid #ff4655;
            background: rgba(255, 70, 85, 0.05);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff4655;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 70, 85, 0.7);
            display: flex;
            align-items: center;
        }
        .my-logo i { margin-right: 10px; color: #4CAF50; }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li { margin-left: 2rem; }
        .main-nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26, 58, 95, 0.7);
            margin-bottom: 2rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6ab7ff;
        }
        .breadcrumb a { color: #6ab7ff; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content { background: rgba(26, 58, 95, 0.8); padding: 2.5rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
        .sidebar {
            background: rgba(12, 26, 45, 0.9);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid #ff4655;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #ffcc00; border-bottom: 2px dashed #4CAF50; padding-bottom: 0.5rem; }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #4CAF50;
            border-radius: 5px 0 0 5px;
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .search-form button {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #45a049; }
        .comment-form textarea, .rating-form select, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #6ab7ff;
            border-radius: 5px;
            background: rgba(255,255,255,0.08);
            color: #fff;
        }
        .comment-form button, .rating-form button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-form button:hover, .rating-form button:hover { background: #e03e4c; transform: translateY(-2px); }
        .featured-image {
            text-align: center;
            margin: 2.5rem 0;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #ff4655;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s;
        }
        .featured-image img:hover { transform: scale(1.02); }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .content-box {
            background: rgba(255, 70, 85, 0.1);
            border: 1px solid #ff4655;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .link-list li::before { content: '🚀'; position: absolute; left: 0; }
        .site-footer {
            background: #0c1a2d;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #4CAF50;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a4365;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                border-top: 1px solid #ff4655;
            }
            .main-nav.active ul { display: flex; }
            .main-nav li { margin: 0.5rem 0; margin-left: 0; }
            .hamburger { display: block; }
            .header-inner { flex-wrap: wrap; }
            .article-content { padding: 1.5rem; }
        }
        @media (max-width: 480px) {
            .my-logo a { font-size: 1.8rem; }
            h1 { font-size: 1.8rem; }
            .breadcrumb li { font-size: 0.9rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content > * { animation: fadeIn 0.6s ease-out forwards; }
