* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a40 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #00b4ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #ffde59;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 40, 0.95);
            border-bottom: 2px solid #00b4ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00b4ff, #ffde59);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(0, 180, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4ff;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 40, 0.98);
            padding: 20px;
            border-top: 1px solid #00b4ff;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(0, 180, 255, 0.2);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffde59;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(20, 20, 60, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 180, 255, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #ffde59;
            text-align: center;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 25px;
            }
        }
        h2 {
            font-size: 2rem;
            color: #00b4ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 180, 255, 0.5);
        }
        h3 {
            font-size: 1.5rem;
            color: #ffde59;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #b0d0ff;
            margin-bottom: 30px;
            padding-left: 20px;
            border-left: 4px solid #00b4ff;
        }
        .highlight {
            background: rgba(255, 222, 89, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ffde59;
            margin: 25px 0;
        }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .video-card {
            background: rgba(30, 30, 70, 0.9);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid rgba(0, 180, 255, 0.2);
        }
        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 180, 255, 0.3);
        }
        .video-thumb {
            width: 100%;
            height: 180px;
            background: linear-gradient(45deg, #0a2a4a, #1a3a6a);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #00b4ff;
        }
        .video-info {
            padding: 20px;
        }
        .video-info h4 {
            color: #ffde59;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            border: 3px solid #00b4ff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .interactive-section {
            margin: 50px 0;
            padding: 30px;
            background: rgba(10, 10, 40, 0.7);
            border-radius: 15px;
            border: 2px solid rgba(255, 222, 89, 0.3);
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 40px;
        }
        .section-title {
            color: #ffde59;
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            color: #00b4ff;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
            color: #b0d0ff;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(0, 180, 255, 0.5);
            background: rgba(20, 20, 50, 0.9);
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffde59;
            box-shadow: 0 0 10px rgba(255, 222, 89, 0.3);
        }
        button {
            background: linear-gradient(90deg, #00b4ff, #0066cc);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(90deg, #ffde59, #ffaa00);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 222, 89, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffde59;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(30, 30, 70, 0.7);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(0, 180, 255, 0.2);
        }
        footer {
            background: rgba(5, 5, 20, 0.98);
            border-top: 2px solid #00b4ff;
            padding: 40px 0 20px;
            margin-top: 50px;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: #ffde59;
        }
        .text-center {
            text-align: center;
        }
        .mb-4 {
            margin-bottom: 40px;
        }
