        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #00d9ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff00ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 12, 41, 0.95);
            border-bottom: 3px solid #00d9ff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00d9ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 25px;
            background: rgba(0, 217, 255, 0.1);
        }
        .desktop-nav a:hover {
            background: rgba(255, 0, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00d9ff;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(15, 12, 41, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 2px solid #ff00ff;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 10px;
            background: rgba(0, 217, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #00d9ff;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(36, 36, 62, 0.7);
            border-radius: 20px;
            border-left: 6px solid #ff00ff;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            color: #00d9ff;
            text-shadow: 0 0 15px rgba(0, 217, 255, 0.7);
        }
        .article-meta {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: rgba(25, 25, 45, 0.8);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff00ff;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px dashed #00d9ff;
        }
        h3 {
            font-size: 1.6rem;
            color: #00d9ff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 0, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #00d9ff;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.4rem;
            margin-right: 8px;
        }
        .featured-image {
            text-align: center;
            margin: 30px 0;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .internal-links {
            margin: 30px 0;
            padding: 20px;
            background: rgba(0, 217, 255, 0.05);
            border-radius: 15px;
        }
        .sidebar {
            background: rgba(25, 25, 45, 0.8);
            padding: 25px;
            border-radius: 20px;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #ff00ff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #00d9ff;
            border-radius: 25px;
            background: rgba(15, 12, 41, 0.7);
            color: #fff;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #00d9ff, #302b63);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
            background: linear-gradient(90deg, #ff00ff, #302b63);
        }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px;
            border: 2px solid #00d9ff;
            border-radius: 15px;
            background: rgba(15, 12, 41, 0.7);
            color: #fff;
            margin-bottom: 15px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #ff00ff, #302b63);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(90deg, #00d9ff, #302b63);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        footer {
            background: rgba(15, 12, 41, 0.98);
            border-top: 3px solid #ff00ff;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(0, 217, 255, 0.1);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 0, 255, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #302b63;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
