* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a20;
            color: #e0e0e0;
            line-height: 1.7;
            background-image: linear-gradient(to bottom, #0c1519 0%, #14232d 100%);
            min-height: 100vh;
        }
        a {
            color: #4a9ae1;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #7bc0ff;
            text-shadow: 0 0 8px rgba(122, 192, 255, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2b3a 0%, #0d1822 100%);
            padding: 1.5rem 0;
            border-bottom: 3px solid #3a6b8f;
            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;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff9900, #ffcc66, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .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: rgba(58, 107, 143, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc66;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a2b3a;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid #3a6b8f;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a435a;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc66;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(22, 38, 51, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a435a;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc66;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #3a6b8f;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a9ae1;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #3a6b8f;
        }
        h3 {
            font-size: 1.6rem;
            color: #7bc0ff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #a3d5ff;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            font-weight: 500;
            background-color: rgba(58, 107, 143, 0.1);
            padding: 1.5rem;
            border-left: 5px solid #ff9900;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 204, 102, 0.1);
            border-left: 4px solid #ffcc66;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background: linear-gradient(145deg, #1c3245, #152536);
            border: 2px solid #3a6b8f;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }
        .stat {
            padding: 1rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #ff9900;
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .article-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #3a6b8f;
            margin: 2rem 0;
            box-shadow: 0 6px 16px rgba(0,0,0,0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        strong {
            color: #ffcc66;
            font-weight: 700;
        }
        .interactive-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(58, 107, 143, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            margin: 0.5rem;
        }
        .interactive-link:hover {
            background-color: rgba(58, 107, 143, 0.6);
        }
        .sidebar {
            background-color: rgba(22, 38, 51, 0.8);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a435a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #ffcc66;
            font-size: 1.4rem;
            margin-top: 0;
            border-bottom: 2px solid #3a6b8f;
            padding-bottom: 0.7rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: #1a2b3a;
            border: 1px solid #3a6b8f;
            border-radius: 5px 0 0 5px;
            color: #e0e0e0;
        }
        .search-button {
            background-color: #3a6b8f;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #4a9ae1;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            background-color: #1a2b3a;
            border: 1px solid #3a6b8f;
            border-radius: 5px;
            color: #e0e0e0;
        }
        .submit-btn {
            background-color: #2a7a3e;
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #3a9a4e;
        }
        .site-footer {
            background: linear-gradient(to top, #0d1822, #1a2b3a);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #3a6b8f;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffcc66;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a435a;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .my-logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, .sidebar {
                padding: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
