        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1c7ed6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 20px 0;
            border-bottom: 3px solid #2a3b5c;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
        }
        .my-logo:hover {
            color: #ff8787;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(42, 59, 92, 0.7);
        }
        .nav-desktop a:hover {
            background: #2a3b5c;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ff6b6b;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a2332;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 2px solid #2a3b5c;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #2a3b5c;
            font-size: 1.2rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 35, 50, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.5rem;
            color: #ff6b6b;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #2a3b5c;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.5rem;
            color: #4dabf7;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ff6b6b;
        }
        h3 {
            font-size: 2rem;
            color: #69db7c;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #ffd43b;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5em;
            margin-right: 10px;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(26, 35, 50, 0.8);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .widget h3 {
            font-size: 1.8rem;
            color: #ff6b6b;
            margin-bottom: 20px;
            text-align: center;
        }
        .search-form, .comment-form, .score-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #2a3b5c;
            background: #1a2332;
            color: #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        button {
            padding: 15px;
            background: linear-gradient(135deg, #ff6b6b, #ff8787);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ffd43b;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ffc078;
        }
        footer {
            background: #1a2332;
            padding: 50px 0 30px;
            border-top: 3px solid #2a3b5c;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            font-size: 1.2rem;
        }
        friend-link a {
            color: #69db7c;
            font-weight: bold;
        }
        friend-link a:hover {
            color: #40c057;
        }
        .copyright {
            margin-top: 40px;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #2a3b5c;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -60px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 25px;
            }
            .widget {
                padding: 20px;
            }
        }
