* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #152642 100%);
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a4365;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff6b00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            animation: glow 1s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 10px #ffcc00; }
            to { text-shadow: 0 0 20px #ff6b00, 0 0 30px #ffcc00; }
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background: rgba(79, 195, 247, 0.15);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e7ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: rgba(10, 25, 47, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2a4365;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #4fc3f7;
        }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 900px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(15, 30, 55, 0.7);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a4365;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffcc00;
            line-height: 1.2;
            border-bottom: 3px solid #ff6b00;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #4fc3f7;
            padding-left: 10px;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #a3bffa;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
            color: #b3c6ff;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,204,0,0.1), transparent);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #b3c6ff;
            border-left: 4px solid #4fc3f7;
            padding-left: 20px;
            margin: 25px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
            padding: 20px;
            background: rgba(41, 67, 101, 0.5);
            border-radius: 12px;
        }
        .stat {
            text-align: center;
            padding: 15px;
            background: rgba(10, 25, 47, 0.7);
            border-radius: 10px;
        }
        .stat .number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
            display: block;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            border: 3px solid #4fc3f7;
            margin: 25px auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed #2a4365;
        }
        aside {
            background: rgba(15, 30, 55, 0.7);
            border-radius: 16px;
            padding: 30px;
            height: fit-content;
            border: 1px solid #2a4365;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #ffcc00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a4365;
        }
        .search-box {
            display: flex;
            margin-bottom: 25px;
        }
        .search-box input {
            flex: 1;
            padding: 14px;
            border: 2px solid #2a4365;
            border-radius: 8px 0 0 8px;
            background: rgba(10, 25, 47, 0.8);
            color: #e0e7ff;
            font-size: 1rem;
        }
        .search-box button {
            background: linear-gradient(90deg, #4fc3f7, #2979ff);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #2979ff, #4fc3f7);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: #ff6b00;
        }
        .rating-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(90deg, #ff6b00, #ffcc00);
            color: #0c1a2d;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s;
            margin-top: 15px;
        }
        .rating-form button:hover {
            transform: translateY(-3px);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            background: rgba(10, 25, 47, 0.8);
            border: 2px solid #2a4365;
            border-radius: 8px;
            color: #e0e7ff;
            resize: vertical;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .comment-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(90deg, #00c853, #64dd17);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #64dd17, #00c853);
        }
        footer {
            background: rgba(10, 25, 47, 0.95);
            border-top: 2px solid #2a4365;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(41, 67, 101, 0.5);
            border-radius: 8px;
            margin-bottom: 10px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #2a4365;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 25px;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
