        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #7cb8ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, #1b4332 50%, transparent 100%);
            padding: 2px 8px;
            border-radius: 3px;
        }
        .section-padding {
            padding: 40px 0;
        }
        header {
            background: #1b263b;
            border-bottom: 2px solid #415a77;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-shadow: 2px 2px 4px #000;
            font-family: 'Georgia', serif;
        }
        .logo a span {
            color: #7cb8ff;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #e0e1dd;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover,
        nav a.active {
            background-color: #415a77;
            color: #ffcc00;
        }
        .breadcrumb {
            background: #2a3d5e;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #7cb8ff;
        }
        .search-box {
            background: #1b263b;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: 2px solid #415a77;
            border-radius: 8px 0 0 8px;
            background: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        .search-box button {
            background: #ffcc00;
            color: #1b263b;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffd60a;
        }
        main {
            flex: 1;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(27, 38, 59, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        h1 {
            color: #ffcc00;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            color: #7cb8ff;
            font-size: 2rem;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #415a77;
        }
        h3 {
            color: #aaccff;
            font-size: 1.6rem;
            margin: 25px 0 12px;
        }
        h4 {
            color: #caf0f8;
            font-size: 1.3rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #ffcc00;
            margin-bottom: 25px;
        }
        .figure {
            margin: 25px auto;
            text-align: center;
            max-width: 800px;
        }
        .figure img {
            border-radius: 10px;
            border: 3px solid #415a77;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .caption {
            font-style: italic;
            margin-top: 10px;
            color: #b0b7c3;
        }
        .info-box {
            background: #1b4332;
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box h3 {
            color: #ffcc00;
            margin-top: 0;
        }
        aside {
            background: #1b263b;
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #415a77;
        }
        .widget ul {
            list-style: none;
        }
        .widget li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .widget li::before {
            content: "♦";
            color: #ffcc00;
            position: absolute;
            left: 0;
        }
        .user-feedback {
            background: #1b263b;
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #aaccff;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #415a77;
            border-radius: 8px;
            background: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 10px;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        .btn-submit {
            background: linear-gradient(135deg, #ffcc00, #ffaa00);
            color: #1b263b;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 204, 0, 0.4);
        }
        footer {
            background: #1b263b;
            border-top: 3px solid #415a77;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-widget h4 {
            color: #ffcc00;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background: #2a3d5e;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #415a77;
        }
        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #415a77;
            font-size: 0.9rem;
            color: #b0b7c3;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1b263b;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
        }
