        * { 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, #0c0c14 0%, #1a1a2e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-weight: 800; color: #ffcc00; margin-bottom: 1rem; font-family: 'Arial Black', Gadget, sans-serif; }
        h1 { font-size: 2.8rem; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
        h2 { font-size: 2.2rem; border-left: 5px solid #00a8ff; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #00d9ff; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #00a8ff; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffcc00; transform: translateY(-2px); }
        strong { color: #ffcc00; font-weight: 700; }
        em { color: #00d9ff; font-style: italic; }
        .highlight { background: linear-gradient(90deg, rgba(255,204,0,0.2) 0%, transparent 100%); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section { padding: 3rem 0; border-bottom: 1px solid #2a2a3e; }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            border-bottom: 2px solid #ffcc00;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ffcc00, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(255, 204, 0, 0.3);
        }
        .logo a:hover { transform: scale(1.05); }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 204, 0, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(15, 15, 25, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border-top: 1px solid #333;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a2a3e;
            font-weight: 600;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(30, 30, 46, 0.8);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffcc00; }
        .breadcrumb span { color: #ffcc00; margin: 0 0.5rem; }
        .hero {
            text-align: center;
            padding: 4rem 1rem;
            background: radial-gradient(circle at center, #1a1a2e 0%, #0c0c14 100%);
            border-bottom: 3px solid #00a8ff;
        }
        .hero h1 { margin-bottom: 1.5rem; }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 2rem; color: #ccc; }
        .featured-image {
            margin: 3rem auto;
            max-width: 900px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 168, 255, 0.3);
            border: 3px solid #ffcc00;
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .featured-image figcaption {
            padding: 1rem;
            background: rgba(20, 20, 35, 0.9);
            font-style: italic;
            color: #aaa;
            text-align: center;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .main-content {
            background: rgba(25, 25, 40, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
        }
        .sidebar {
            background: rgba(20, 20, 35, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid #ff6b00;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333;
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #00a8ff;
            background: #111;
            color: white;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: #00a8ff;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #ffcc00; }
        .rating-form, .comment-form {
            background: rgba(30, 30, 50, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1.5rem;
            border: 1px solid #2a2a3e;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: #111;
            border: 1px solid #444;
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffcc00; }
        .submit-btn {
            background: linear-gradient(45deg, #ff6b00, #ffcc00);
            color: #000;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 5px;
            font-weight: 800;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 0, 0.4);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(15, 15, 25, 0.8);
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th, .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a3e;
        }
        .data-table th {
            background: rgba(0, 168, 255, 0.2);
            color: #00d9ff;
            font-weight: 700;
        }
        .data-table tr:hover {
            background: rgba(255, 204, 0, 0.05);
        }
        blockquote {
            border-left: 4px solid #ffcc00;
            padding-left: 2rem;
            margin: 2.5rem 0;
            font-style: italic;
            color: #ccc;
            background: rgba(255, 204, 0, 0.05);
            padding: 2rem;
            border-radius: 0 10px 10px 0;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 2px solid #2a2a3e;
            border-bottom: 2px solid #2a2a3e;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }
        .web-link {
            background: rgba(40, 40, 60, 0.7);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
            border-color: #ffcc00;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ccc;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: #ffcc00; }
        .site-footer {
            background: rgba(10, 10, 20, 0.98);
            padding: 2.5rem 0;
            text-align: center;
            color: #888;
            border-top: 1px solid #333;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #666;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
