        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 10% 20%, rgba(28, 58, 113, 0.2) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(113, 28, 28, 0.2) 0%, transparent 20%);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', 'Franklin Gothic Heavy', sans-serif;
            color: #ff4655;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            text-shadow: 0 0 15px rgba(255, 70, 85, 0.5);
            border-bottom: 3px solid #ff4655;
            padding-bottom: 20px;
            margin-top: 1rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            border-left: 5px solid #00ccff;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            color: #00ccff;
        }
        h4 {
            font-size: 1.3rem;
            color: #9acd32;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: #00ccff;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: #ff4655;
            border-bottom-color: #ff4655;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        em {
            color: #9acd32;
            font-style: italic;
        }
        .lead {
            font-size: 1.4rem;
            color: #b0b0ff;
            text-align: center;
            max-width: 900px;
            margin: 2rem auto;
            padding: 1.5rem;
            background: rgba(255, 70, 85, 0.05);
            border-radius: 12px;
            border-left: 4px solid #ff4655;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0a0e17 100%);
            padding: 1rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4655, #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0b0ff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 70, 85, 0.2);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #00ccff;
            background: none;
            border: none;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a1f2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
            border-top: 2px solid #ff4655;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #e0e0e0;
        }
        .nav-mobile a:hover {
            background: rgba(0, 204, 255, 0.1);
            padding-left: 25px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00ccff;
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        article {
            background: rgba(20, 25, 40, 0.8);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 70, 85, 0.2);
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 2rem 0;
            border: 3px solid #00ccff;
            box-shadow: 0 0 30px rgba(0, 204, 255, 0.3);
        }
        aside {
            background: rgba(25, 30, 50, 0.8);
            padding: 2rem;
            border-radius: 16px;
            align-self: start;
            position: sticky;
            top: 140px;
            border: 1px solid rgba(154, 205, 50, 0.2);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #9acd32;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 15px;
            background: rgba(10, 14, 23, 0.8);
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00ccff;
            box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
        }
        button, .btn {
            background: linear-gradient(90deg, #ff4655, #c13584);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 70, 85, 0.4);
            background: linear-gradient(90deg, #ff2e3e, #a82a6b);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        footer {
            background: #151925;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #ff4655;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-links h4 {
            color: #00ccff;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            margin-bottom: 10px;
            border-left: 4px solid #9acd32;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(154, 205, 50, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        .info-box {
            background: rgba(0, 204, 255, 0.1);
            border-left: 5px solid #00ccff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #b0b0ff;
            border-left: 4px solid #ff4655;
            padding-left: 2rem;
            margin: 2.5rem 1rem;
            quotes: "“" "”" "‘" "’";
        }
        .quote::before {
            content: open-quote;
            font-size: 3rem;
            color: #ff4655;
            vertical-align: -0.4em;
            line-height: 0;
            margin-right: 10px;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.15), transparent);
            padding: 2rem;
            text-align: center;
            font-weight: bold;
            margin: 3rem 0;
            border-radius: 12px;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 1.5rem 0;
        }
        .tag {
            background: rgba(255, 70, 85, 0.2);
            color: #ffa8b0;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .tag:hover {
            background: rgba(255, 70, 85, 0.4);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            article, aside {
                padding: 1.5rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .lead {
                font-size: 1.2rem;
                padding: 1rem;
            }
        }
