* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff6b7a;
            transform: translateY(-2px);
        }
        .site-header {
            background: rgba(20, 20, 30, 0.95);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #ff4655;
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 70, 85, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #ff4655;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-menu a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff4655;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: rgba(40, 40, 60, 0.8);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .content-wrapper {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 3rem;
            flex-grow: 1;
        }
        .main-content {
            background: rgba(30, 30, 45, 0.9);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #444;
        }
        .sidebar {
            background: rgba(30, 30, 45, 0.9);
            padding: 1.5rem;
            border-radius: 15px;
            height: fit-content;
            border: 1px solid #444;
        }
        h1 {
            font-size: 3.2rem;
            color: #ff4655;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 0 0 15px rgba(255, 70, 85, 0.7);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff8e53;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff4655;
        }
        h3 {
            font-size: 1.8rem;
            color: #6cb4ee;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #9acd32;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 70, 85, 0.1);
            border-left: 4px solid #ff4655;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .bold-text {
            font-weight: 800;
            color: #ffcc00;
        }
        .feature-box {
            background: rgba(40, 40, 60, 0.8);
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 2px solid #555;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            border-color: #ff4655;
        }
        .feature-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 2px solid #555;
            background: rgba(20, 20, 30, 0.8);
            color: #f0f0f0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff4655;
            box-shadow: 0 0 10px rgba(255, 70, 85, 0.5);
        }
        button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 3px solid #ff4655;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            background: rgba(255, 70, 85, 0.2);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            border: 1px solid #ff4655;
            font-size: 0.9rem;
        }
        .link-list a:hover {
            background: rgba(255, 70, 85, 0.4);
        }
        site-footer {
            background: rgba(10, 10, 20, 0.95);
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #ff4655;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        friend-link {
            display: block;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #6cb4ee;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0.5rem;
            }
            #nav-toggle:checked ~ .nav-menu {
                display: flex;
            }
            .nav-menu a {
                padding: 0.8rem;
                text-align: center;
                background: rgba(255, 70, 85, 0.1);
            }
            .content-wrapper {
                padding: 0 1rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .site-header, .breadcrumb {
                padding: 1rem;
            }
            .my-logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .feature-box {
                padding: 1.5rem;
            }
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffcc00;
            margin: 0.5rem 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
