        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a1a2d;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #4cd137;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .container {
                grid-template-columns: 3fr 1fr;
            }
        }
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a.my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff9f43;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo a.my-logo:hover {
            color: #ffdd59;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ff9f43;
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        #nav-toggle {
            display: none;
        }
        nav {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        nav a {
            color: #dfe6e9;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #00cec9;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #95a5a6;
            background: #14213d;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #74b9ff;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background: #1a2b4a;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        article {
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff9f43;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #00a8ff;
            padding-bottom: 10px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #00cec9;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #ff9f43;
        }
        h3 {
            font-size: 1.6rem;
            color: #74b9ff;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #a29bfe;
            margin: 1.2rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 159, 67, 0.15);
            border-left: 4px solid #ff9f43;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            background: #14213d;
            padding: 25px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #ff9f43;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #00a8ff;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #2d4059;
            background: #0a1a2d;
            color: #e0e0e0;
            font-size: 1rem;
            width: 100%;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00a8ff;
            box-shadow: 0 0 8px rgba(0, 168, 255, 0.5);
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(to right, #00a8ff, #0097e6);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(to right, #0097e6, #00a8ff);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .rating i {
            color: #f1c40f;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating i:hover {
            color: #ffdd59;
        }
        footer {
            background: #0c1a30;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #00a8ff;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }
        friend-link {
            display: inline-block;
            background: #1e3c72;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: #2a5298;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d4059;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: flex;
                position: absolute;
                right: 20px;
                top: 20px;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
                padding: 15px;
                background: rgba(30, 60, 114, 0.95);
                border-radius: 10px;
            }
            #nav-toggle:checked ~ nav {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 15px;
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        .card {
            background: #14213d;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid transparent;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            border-color: #00a8ff;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #95a5a6;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
