        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a1a2d;
            color: #e0e7ff;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0c2340 0%, #1a3a5f 100%);
            border-bottom: 3px solid #ff6b35;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 30, 60, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #4fc3f7, #29b6f6, #0288d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 107, 53, 0.1);
            color: #ff6b35;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4fc3f7;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #0c2340;
            padding: 20px;
            border-top: 1px solid #1a3a5f;
            animation: slideDown 0.3s ease-out;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid #1a3a5f;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #112240;
            font-size: 0.9rem;
            border-bottom: 1px solid #1a3a5f;
        }
        .breadcrumb a {
            color: #a0c8ff;
        }
        .breadcrumb span {
            color: #ccc;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 50px 20px;
            background: radial-gradient(circle at center, #1a3a5f 0%, #0a1a2d 100%);
            border-bottom: 2px solid #ff6b35;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: #b3e5fc;
        }
        .last-updated {
            font-style: italic;
            color: #81d4fa;
            background-color: rgba(41, 182, 246, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            display: inline-block;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        .main-article {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #4fc3f7;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        h2, h3, h4 {
            color: #4fc3f7;
            margin-top: 2em;
            margin-bottom: 0.8em;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(79, 195, 247, 0.3);
        }
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: #81d4fa; }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 4px solid #ff6b35;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #1a3a5f;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #90a4ae;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: #112240;
            padding: 25px;
            border-radius: 12px;
            border-top: 4px solid #ff6b35;
        }
        .widget-title {
            color: #ff6b35;
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #2d4a6e;
            background-color: #0a1a2d;
            color: #e0e7ff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4fc3f7;
        }
        button {
            background: linear-gradient(to right, #ff6b35, #ff8e53);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        button:hover {
            background: linear-gradient(to right, #ff8e53, #ff6b35);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd54f;
            margin: 10px 0;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background-color: #07101c;
            padding: 50px 20px 30px;
            border-top: 3px solid #1a3a5f;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(26, 58, 95, 0.3);
            border-radius: 10px;
            width: 100%;
        }
        friend-link a {
            padding: 8px 15px;
            background-color: rgba(79, 195, 247, 0.1);
            border-radius: 5px;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            color: #90a4ae;
            font-size: 0.9rem;
            padding-top: 30px;
            border-top: 1px solid #1a3a5f;
            width: 100%;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 12px 15px;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .hero {
                padding: 40px 15px;
            }
            h1 {
                font-size: 2rem;
            }
            .main-article {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .section-padding {
                padding: 40px 0;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 10px 15px;
            }
            .widget-title {
                font-size: 1.1rem;
            }
            friend-link {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }
