        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: #0a0a12;
            background-image: radial-gradient(circle at 15% 50%, rgba(30, 30, 60, 0.8) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(10, 20, 50, 0.6) 0%, transparent 20%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        h1, h2, h3, h4 {
            font-family: 'Orbitron', 'Arial Black', sans-serif;
            color: #4cc9f0;
            margin: 1.5em 0 0.8em;
            line-height: 1.3;
            text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #4cc9f0, #7209b7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #7209b7;
        }
        h2 {
            font-size: 2.4rem;
            color: #f72585;
            padding-left: 10px;
            border-left: 5px solid #f72585;
        }
        h3 {
            font-size: 1.8rem;
            color: #4895ef;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: #4895ef;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: #4cc9f0;
            border-bottom: 1px dotted #4cc9f0;
            text-shadow: 0 0 8px rgba(76, 201, 240, 0.5);
        }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        header {
            padding: 1.5rem 0;
            border-bottom: 1px solid #1a1a2e;
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
        }
        .logo a {
            background: linear-gradient(45deg, #7209b7, #f72585, #4cc9f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            border: none;
            text-shadow: 0 0 20px rgba(114, 9, 183, 0.5);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            flex: 1;
        }
        .main-nav a {
            padding: 0.7rem 1.2rem;
            border-radius: 25px;
            background: rgba(26, 26, 46, 0.7);
            border: 1px solid #2d2d4d;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background: rgba(72, 149, 239, 0.15);
            border-color: #4895ef;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(72, 149, 239, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #4cc9f0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #a0a0c0;
            border-bottom: 1px solid #1a1a2e;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #a0a0c0;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-box {
            max-width: 500px;
            margin: 2rem auto;
            padding: 1.5rem;
            background: rgba(20, 25, 45, 0.8);
            border-radius: 15px;
            border: 1px solid #2d2d4d;
        }
        .search-box form {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border-radius: 30px;
            border: 2px solid #3a3a5d;
            background: #0f1120;
            color: #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-box input:focus {
            outline: none;
            border-color: #7209b7;
            box-shadow: 0 0 15px rgba(114, 9, 183, 0.4);
        }
        .search-box button {
            padding: 12px 25px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(45deg, #7209b7, #f72585);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-box button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(247, 37, 133, 0.6);
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-content {
            background: rgba(15, 20, 40, 0.7);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid #252545;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(114, 9, 183, 0.1), transparent);
            padding: 1.5rem;
            border-left: 4px solid #7209b7;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(30, 35, 60, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid #3a3a6d;
            text-align: center;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            border-color: #4cc9f0;
        }
        .stat-card h4 {
            color: #f72585;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .article-image {
            width: 100%;
            margin: 2rem 0;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid #3a3a5d;
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .sidebar {
            background: rgba(15, 20, 40, 0.7);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid #252545;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar h3 {
            color: #f72585;
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d2d4d;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #2d2d4d;
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: rgba(30, 35, 60, 0.8);
            border-radius: 15px;
            margin: 2rem 0;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: all 0.2s;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            margin-top: 1rem;
            padding: 10px 25px;
            border-radius: 25px;
            border: none;
            background: linear-gradient(45deg, #4895ef, #4cc9f0);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(76, 201, 240, 0.5);
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #1a1a2e;
        }
        .comment-form {
            background: rgba(30, 35, 60, 0.8);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #3a3a5d;
            background: #0f1120;
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            padding: 12px 30px;
            border-radius: 25px;
            border: none;
            background: linear-gradient(45deg, #f72585, #7209b7);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(15, 20, 40, 0.8);
            border-radius: 15px;
        }
        .web-link {
            padding: 1rem;
            background: rgba(30, 35, 60, 0.6);
            border-radius: 10px;
            border-left: 3px solid #4895ef;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(72, 149, 239, 0.2);
            transform: translateX(5px);
        }
        footer {
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #1a1a2e;
            color: #a0a0c0;
            font-size: 0.9rem;
            margin-top: 3rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 1024px) {
            .content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .nav-container {
                flex-direction: column;
            }
            .main-nav {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 30px;
            }
            .article-content {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(76, 201, 240, 0); }
            100% { box-shadow: 0 0 0 0 rgba(76, 201, 240, 0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; }
        .strong {
            font-weight: bold;
            color: #4cc9f0;
            background: rgba(76, 201, 240, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .keyword {
            color: #f72585;
            font-weight: bold;
        }
