* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #778da9;
            transition: color 0.3s;
        }
        a:hover {
            color: #415a77;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .logo span {
            color: #ef476f;
        }
        .logo:hover {
            color: #ffd166;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: #778da9;
            color: #0d1b2a;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1b263b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #415a77;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1b263b;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #ffd166;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1b263b;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #ef476f;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #415a77;
        }
        h3 {
            font-size: 1.5rem;
            color: #778da9;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #415a77;
            border-left: 5px solid #ffd166;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .strong {
            font-weight: 800;
            color: #ffd166;
        }
        .keyword-link {
            color: #ef476f;
            font-weight: 600;
        }
        .keyword-link:hover {
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
            display: block;
        }
        aside {
            background-color: #1b263b;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #ffd166;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            background-color: #0d1b2a;
            color: #e0e1dd;
        }
        .search-form button {
            background-color: #ef476f;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #d43d63;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .stars {
            color: #ffd166;
            font-size: 1.5rem;
        }
        .rating-form input[type="radio"] {
            display: none;
        }
        .rating-form label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-form input:checked ~ label,
        .rating-form label:hover,
        .rating-form label:hover ~ label {
            color: #ffd166;
        }
        .rating-form button {
            margin-top: 1rem;
            padding: 0.7rem 1.5rem;
            background-color: #415a77;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
        }
        .rating-form button:hover {
            background-color: #778da9;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 5px;
            border: none;
            background-color: #0d1b2a;
            color: #e0e1dd;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            padding: 0.8rem 2rem;
            background-color: #ef476f;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #d43d63;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2.5rem;
            background-color: #1b263b;
            border-radius: 15px;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link a {
            display: block;
            padding: 0.8rem;
            background-color: #0d1b2a;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #415a77;
        }
        .web-link a:hover {
            background-color: #415a77;
            transform: translateY(-3px);
        }
        footer {
            background-color: #1b263b;
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 3px solid #ffd166;
        }
        .copyright {
            margin-top: 2rem;
            color: #778da9;
            font-size: 0.9rem;
        }
        .divider {
            height: 2px;
            background-color: #415a77;
            margin: 3rem 0;
        }
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: #ef476f;
            color: white;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #d43d63;
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
