* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
        }
        .logo a:hover {
            color: #ffffff;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #ccccff;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #ffcc00;
            border-bottom-color: #ffcc00;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 25, 45, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333355;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ccccff;
            padding: 15px 10px;
            border-bottom: 1px solid #2a2a4a;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #ffcc00;
            background: rgba(255,204,0,0.1);
            padding-left: 20px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 35, 60, 0.7);
            border-bottom: 1px solid #444466;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaaadd;
        }
        .breadcrumb span {
            color: #ffcc00;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(25, 30, 50, 0.8);
            border-radius: 15px;
            padding: 35px;
            border-left: 5px solid #ffcc00;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        article h1 {
            color: #ffcc00;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        article h2 {
            color: #00a8ff;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444466;
        }
        article h3 {
            color: #ff6b9d;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        article em {
            color: #ccccff;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(0, 168, 255, 0.1), rgba(255, 204, 0, 0.1));
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            margin: 30px auto;
            border: 3px solid #444466;
            box-shadow: 0 15px 25px rgba(0,0,0,0.6);
            overflow: hidden;
        }
        .feature-img img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .inline-links {
            background: rgba(255,204,0,0.05);
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 600;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(25, 30, 50, 0.8);
            border-radius: 15px;
            padding: 25px;
            border-top: 4px solid #00a8ff;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: #00a8ff;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 14px;
            background: rgba(255,255,255,0.1);
            border: 2px solid #444466;
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to bottom, #ffcc00, #ff9900);
            color: #1a1a2e;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to bottom, #ffdd44, #ffaa00);
            box-shadow: 0 0 15px rgba(255,204,0,0.5);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border: 2px solid #444466;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .rating-form input,
        .comment-form input {
            width: 100%;
            padding: 14px;
            background: rgba(255,255,255,0.05);
            border: 2px solid #444466;
            border-radius: 8px;
            color: #fff;
            margin-bottom: 15px;
        }
        .btn-submit {
            background: linear-gradient(to right, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background: linear-gradient(to right, #0097e6, #0088cc);
            box-shadow: 0 0 15px rgba(0,168,255,0.5);
        }
        .footer-links {
            background: rgba(20, 25, 45, 0.9);
            padding: 40px 0;
            margin-top: 40px;
            border-top: 2px solid #444466;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #ff6b9d;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.07);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ccccff;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        .site-footer {
            background: #0a0a1a;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #333355;
        }
        .site-footer p {
            color: #8888aa;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        .footer-links-small {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        .footer-links-small a {
            color: #aaaadd;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-40 {
            margin-top: 40px;
        }
