        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #36b3ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff4655;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #222836;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0a0e17 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4655, #36b3ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 70, 85, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #36b3ff;
        }
        .breadcrumb {
            padding: 1.5rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #36b3ff;
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(circle at center, #222836 0%, #0a0e17 70%);
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(54, 179, 255, 0.5);
            line-height: 1.2;
        }
        .subtitle {
            font-size: 1.4rem;
            color: #aaa;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        h2 {
            font-size: 2.5rem;
            color: #ff4655;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #36b3ff;
        }
        h3 {
            font-size: 1.8rem;
            color: #36b3ff;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 70, 85, 0.1);
            border-left: 4px solid #ff4655;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .content-image {
            margin: 2.5rem auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 2px solid #36b3ff;
        }
        .search-box {
            background: #1a1f2e;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #36b3ff;
            border-radius: 8px 0 0 8px;
            background: #0a0e17;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff2e3f;
        }
        .user-interaction {
            background: #222836;
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .rating-form, .comment-form {
            margin-bottom: 2.5rem;
        }
        .rating-form h3, .comment-form h3 {
            margin-bottom: 1rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 1.5rem;
        }
        .stars i {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i.active, .stars i:hover {
            color: #ffcc00;
        }
        textarea, .comment-form input[type="text"], .comment-form input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: #0a0e17;
            border: 1px solid #36b3ff;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(90deg, #36b3ff, #ff4655);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 70, 85, 0.4);
        }
        .footer-links {
            background: #151a28;
            padding: 3rem 0;
        }
        .web-link {
            display: inline-block;
            background: #222836;
            margin: 0.8rem;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border: 1px solid #333a4d;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #2a3145;
            border-color: #36b3ff;
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding: 2rem;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1f2e;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .web-link {
                display: block;
                margin: 0.8rem 0;
                text-align: center;
            }
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .data-card {
            background: #1a1f2e;
            padding: 1.5rem;
            border-radius: 12px;
            border-top: 4px solid #ff4655;
            transition: transform 0.3s;
        }
        .data-card:hover {
            transform: translateY(-10px);
        }
        .interview-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .interview-text {
            flex: 1;
            min-width: 300px;
        }
