        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c0e1f 0%, #1a1d3a 100%);
            color: #e0e0ff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; color: #ffcc00; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .section-pad { padding: 3rem 0; }
        .highlight-box {
            background: linear-gradient(90deg, rgba(255,204,0,0.1) 0%, rgba(255,140,0,0.05) 100%);
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .site-header {
            background: rgba(12, 14, 31, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid #2a2e5c;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            text-decoration: none;
            background: linear-gradient(90deg, #ffcc00, #ff7b00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover { opacity: 0.9; }
        .breadcrumb {
            padding: 1rem 0 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ffcc00;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e0e0ff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: linear-gradient(90deg, #ffcc00, #ff7b00);
            color: #0c0e1f;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(12, 14, 31, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #ffcc00, #ff7b00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: #fff;
            color: #333;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #ffcc00, #ff7b00);
            color: #0c0e1f;
            border: none;
            padding: 1rem 2rem;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-btn:hover { opacity: 0.9; }
        .main-content {
            flex: 1;
        }
        article {
            background: rgba(26, 29, 58, 0.7);
            border-radius: 12px;
            padding: 3rem;
            margin: 2rem auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.5rem;
            margin: 2rem 0 1rem;
            color: #ffcc00;
            border-bottom: 2px solid #ff7b00;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 1.5rem 0 1rem;
            color: #ffaa00;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 25px rgba(255,204,0,0.2);
            border: 2px solid #ffcc00;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: rgba(12, 14, 31, 0.8);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #2a2e5c;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #555;
            justify-content: center;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a2e5c;
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: #ffcc00;
            box-shadow: 0 0 0 2px rgba(255,204,0,0.3);
        }
        .submit-btn {
            background: linear-gradient(90deg, #ffcc00, #ff7b00);
            color: #0c0e1f;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
        }
        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(255,204,0,0.1);
            border: 1px solid #ffcc00;
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
        }
        .web-link a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: 600;
            white-space: nowrap;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background: rgba(12, 14, 31, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid #2a2e5c;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2e5c;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .interactive-section { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 14, 31, 0.98);
                padding: 1rem;
                border-top: 1px solid #2a2e5c;
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.2rem; }
            h2 { font-size: 1.9rem; }
            article { padding: 2rem; }
            .web-links { flex-direction: column; align-items: center; }
            .web-link { width: 100%; text-align: center; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }
            h2 { font-size: 1.6rem; }
            .container { padding: 0 15px; }
        }
