* { 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, #0a0f2b 0%, #1a1f3c 100%);
            background-attachment: fixed;
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Arial Black', Gadget, sans-serif; color: #ffcc00; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); border-bottom: 3px solid #ff3333; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 2.5rem; color: #4da6ff; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2rem; color: #ff9966; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ffcc00; text-shadow: 0 0 5px #ffcc00; }
        strong { color: #ffcc00; font-weight: bold; }
        em { color: #99ff99; font-style: italic; }
        blockquote {
            border-left: 4px solid #ff3333;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #b3b3cc;
            background: rgba(255, 51, 51, 0.05);
            padding: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 15, 43, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff3333;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            text-shadow: 0 0 10px #ff3333, 0 0 20px #ff3333;
            letter-spacing: 2px;
        }
        .logo a { color: inherit; }
        .search-form {
            display: flex;
            flex-grow: 0.4;
            max-width: 400px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #4da6ff;
            border-radius: 30px 0 0 30px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus { background: rgba(255, 255, 255, 0.15); }
        .search-btn {
            background: linear-gradient(to right, #4da6ff, #3366cc);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-btn:hover { background: linear-gradient(to right, #ffcc00, #ff9900); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e0e0e0;
            font-weight: bold;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .main-nav a:hover:after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #b3b3cc;
        }
        .breadcrumb a { margin: 0 5px; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(30, 35, 62, 0.8);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #ffcc00;
        }
        .featured-image img { width: 100%; transition: transform 0.5s; }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            font-style: italic;
            padding: 0.5rem;
            color: #99ccff;
            background: rgba(0, 0, 0, 0.5);
        }
        .info-box {
            background: linear-gradient(135deg, #1a3a5f 0%, #0d2b4d 100%);
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .info-box h3 { color: #fff; margin-top: 0; }
        .sidebar {
            background: rgba(30, 35, 62, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #4da6ff;
        }
        .sidebar-widget:last-child { border-bottom: none; }
        .sidebar-widget h3 { font-size: 1.5rem; }
        .user-interaction { background: rgba(40, 45, 72, 0.9); padding: 2rem; border-radius: 10px; margin-top: 3rem; }
        .interaction-form { margin-top: 1.5rem; }
        .form-group { margin-bottom: 1.2rem; }
        label { display: block; margin-bottom: 0.5rem; color: #ffcc00; }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #4da6ff;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #ffcc00; background: rgba(255, 255, 255, 0.15); }
        .submit-btn {
            background: linear-gradient(to right, #ff3333, #cc0000);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #ffcc00, #ff9900);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #666;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label { color: #ffcc00; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 2px solid #ff3333;
            border-bottom: 2px solid #ff3333;
            margin-top: 3rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateY(-5px);
        }
        .web-link a { font-weight: bold; color: #99ccff; }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            color: #b3b3cc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .main-nav { order: 3; width: 100%; margin-top: 1rem; display: none; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { border-bottom: 1px solid #333; padding: 0.8rem 0; }
            .hamburger { display: block; }
            .search-form { order: 2; width: 100%; margin-top: 1rem; max-width: 100%; }
            .article-content, .sidebar { padding: 1.5rem; }
        }
