        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        .site-header {
            background: rgba(10, 15, 28, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a3b5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, #ff7e00, #ffaa33);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            font-weight: 900;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: none;
        }
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
                gap: 1.5rem;
            }
        }
        .nav-desktop a {
            color: #b0c4de;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            color: #ffaa33;
            background: rgba(255, 170, 51, 0.1);
        }
        .hamburger-btn {
            display: block;
            background: none;
            border: none;
            color: #ffaa33;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (min-width: 768px) {
            .hamburger-btn { display: none; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(15px);
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            border-top: 1px solid #2a3b5c;
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            color: #b0c4de;
            text-decoration: none;
            padding: 0.8rem 0;
            border-bottom: 1px solid #2a3b5c;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #ffaa33;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a9bb2;
        }
        .breadcrumb a {
            color: #8a9bb2;
            text-decoration: none;
        }
        .breadcrumb a:hover { color: #ffaa33; }
        .breadcrumb .separator { margin: 0 0.5rem; }
        .content-card {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #2a3b5c;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .hero-title {
            color: #ffffff;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            border-left: 5px solid #ff7e00;
            padding-left: 1rem;
        }
        @media (min-width: 768px) {
            .hero-title { font-size: 3rem; }
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #8a9bb2;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #2a3b5c;
        }
        .meta-info i { margin-right: 0.5rem; color: #ffaa33; }
        h2 {
            color: #ffaa33;
            margin: 2.5rem 0 1rem;
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 170, 51, 0.3);
        }
        h3 {
            color: #b0c4de;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        h4 {
            color: #a0b3d1;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #ffffff;
            font-weight: 500;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 126, 0, 0.1), transparent);
            border-left: 4px solid #ff7e00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat-box {
            background: rgba(42, 59, 92, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #3a4f7a;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            border-color: #ffaa33;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffaa33;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #b0c4de;
            margin-top: 0.5rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid #3a4f7a;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #8a9bb2;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            padding: 0 1rem;
        }
        a.content-link {
            color: #4dabf7;
            text-decoration: none;
            border-bottom: 1px dotted #4dabf7;
            transition: all 0.2s ease;
        }
        a.content-link:hover {
            color: #ffaa33;
            border-bottom-color: #ffaa33;
        }
        .search-widget {
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 1px solid #3a4f7a;
            border-radius: 8px 0 0 8px;
            background: rgba(15, 23, 42, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #ffaa33;
        }
        .search-button {
            background: linear-gradient(90deg, #ff7e00, #ffaa33);
            color: #0a0f1c;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 700;
            transition: opacity 0.3s;
        }
        .search-button:hover {
            opacity: 0.9;
        }
        .interaction-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #2a3b5c;
        }
        .rating-container {
            text-align: center;
            margin-bottom: 2rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #3a4f7a;
            cursor: pointer;
            padding: 0 0.1rem;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffaa33;
        }
        .comment-form, .rating-form {
            background: rgba(30, 35, 50, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #b0c4de;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #3a4f7a;
            border-radius: 6px;
            background: rgba(15, 23, 42, 0.8);
            color: #e0e0e0;
            font-family: inherit;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #ffaa33;
        }
        .submit-btn {
            background: linear-gradient(90deg, #2a3b5c, #4dabf7);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .submit-btn:hover { opacity: 0.9; }
        .sidebar-widget {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #2a3b5c;
        }
        .widget-title {
            color: #ffaa33;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a3b5c;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #2a3b5c;
        }
        .related-links li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .related-links a {
            color: #b0c4de;
            text-decoration: none;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.3s, padding-left 0.3s;
        }
        .related-links a:hover {
            color: #ffaa33;
            padding-left: 5px;
        }
        .related-links a i {
            margin-right: 0.5rem;
            color: #ff7e00;
        }
        .site-footer {
            background: rgba(10, 15, 28, 0.95);
            border-top: 1px solid #2a3b5c;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            font-style: italic;
            color: #8a9bb2;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #4dabf7;
            text-decoration: none;
        }
        friend-link a:hover { text-decoration: underline; }
        .copyright {
            text-align: center;
            color: #8a9bb2;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3b5c;
        }
