        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
            color: #f5f5f5;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f6b93b;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #fa983a;
            text-shadow: 0 0 8px rgba(246, 185, 59, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #f6b93b;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f6b93b, #fa983a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: rgba(246, 185, 59, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f6b93b;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #ddd;
        }
        .breadcrumb span {
            color: #f6b93b;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-left: 5px solid #f6b93b;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #f6b93b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.3rem;
            margin: 2.5rem 0 1.2rem;
            color: #4a69bd;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #f6b93b;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #78e08f;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #d6a2e8;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(246, 185, 59, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #f6b93b;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .form-section {
            background: rgba(26, 82, 118, 0.6);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #4a69bd;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #f6b93b, #fa983a);
            color: #0c2461;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
            font-size: 1.1rem;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(246, 185, 59, 0.4);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #f6b93b;
        }
        aside {
            background: rgba(26, 82, 118, 0.7);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            transition: background 0.3s;
        }
        .related-links li:hover {
            background: rgba(246, 185, 59, 0.2);
        }
        footer {
            background: rgba(12, 36, 97, 0.98);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #f6b93b;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }
        .friend-links a {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.7rem; }
            h2 { font-size: 2rem; }
            .header-container { flex-direction: column; gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(12, 36, 97, 0.98);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            .nav-links.active { display: flex; }
            .nav-links li { width: 100%; text-align: center; }
            article { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.9rem; }
            .form-section { padding: 1.5rem; }
        }
