        * {
            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, #0c1e3e 0%, #1a2b4d 100%);
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 30, 62, 0.95);
            border-bottom: 3px solid #ff6b35;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff6b35, #ffa235);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 107, 53, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffa235;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 30, 62, 0.98);
            padding: 20px;
            border-top: 2px solid #ff6b35;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #2a3d6d;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0b3e0;
        }
        .breadcrumb a {
            color: #a0b3e0;
        }
        main {
            padding: 30px 0 50px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .widget h3 {
            color: #ffa235;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff6b35;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        label {
            font-weight: 600;
            color: #c0d1ff;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #4d5d8d;
            background: rgba(20, 35, 70, 0.8);
            color: #e0e7ff;
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, #ff6b35, #ff8e35);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #4d5d8d;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i:hover ~ i {
            color: #ffa235;
        }
        .stars i.active {
            color: #ffa235;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffa235;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 35px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a5a8c;
        }
        h3 {
            font-size: 1.5rem;
            color: #a0d8ff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #c0d1ff;
            padding: 15px;
            background: rgba(116, 192, 252, 0.1);
            border-left: 5px solid #74c0fc;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background: rgba(255, 107, 53, 0.15);
            padding: 15px;
            border-radius: 10px;
            border-left: 5px solid #ff6b35;
            margin: 20px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .stat-card {
            background: rgba(20, 35, 70, 0.6);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid #ff8e35;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffa235;
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
        }
        .img-container figcaption {
            font-style: italic;
            color: #a0b3e0;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            padding: 25px;
            border-radius: 10px;
            background: rgba(58, 90, 140, 0.3);
            text-align: center;
            margin: 30px 0;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: #ff6b35;
            position: absolute;
            opacity: 0.5;
        }
        .quote::before {
            top: 10px;
            left: 20px;
        }
        .quote::after {
            bottom: 0;
            right: 20px;
        }
        .footer-links {
            background: rgba(10, 25, 50, 0.9);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #ff6b35;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(255, 107, 53, 0.1);
        }
        .site-footer {
            background: #0a1932;
            padding: 25px 0;
            text-align: center;
            color: #a0b3e0;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 1.5rem;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .header-container {
                padding: 12px 0;
            }
            .content-area {
                padding: 20px;
            }
        }
