* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b9d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            padding: 1.2rem 0;
            border-bottom: 3px solid #ff6b9d;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff6b9d, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo a:hover {
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: #bbdefb;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.3rem;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #ffcc80;
            border-bottom-color: #ffcc80;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #bbdefb;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #111827;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #90caf9;
        }
        .breadcrumb span {
            color: #b0bec5;
            margin: 0 0.5rem;
        }
        .search-section {
            background-color: #1e293b;
            padding: 2rem 0;
            margin: 1.5rem 0;
            border-radius: 12px;
            text-align: center;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #4dabf7;
            border-radius: 50px;
            background-color: #0f172a;
            color: white;
            font-size: 1.1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #4dabf7, #3b5bdb);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(59, 91, 219, 0.4);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: #1a202c;
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc80;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #374151;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff6b9d;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,157,0.15), rgba(77,171,247,0.15));
            border-left: 5px solid #4dabf7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .featured-img {
            width: 100%;
            border-radius: 12px;
            margin: 2.5rem auto;
            border: 3px solid #374151;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .card {
            background-color: #111827;
            border-radius: 12px;
            padding: 1.8rem;
            border-top: 4px solid #ff6b9d;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,107,157,0.2);
        }
        .interactive-section {
            background-color: #111827;
            border-radius: 16px;
            padding: 2.5rem;
            margin: 3rem 0;
        }
        .form-group {
            margin-bottom: 1.8rem;
        }
        label {
            display: block;
            margin-bottom: 0.7rem;
            color: #bbdefb;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #374151;
            border-radius: 8px;
            background-color: #1f2937;
            color: white;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #374151;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc80;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b9d, #e91e63);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            box-shadow: 0 5px 15px rgba(233,30,99,0.4);
            transform: scale(1.03);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: #1a202c;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #374151;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #252f3f;
            border-color: #4dabf7;
        }
        .web-link a {
            color: #e0e0e0;
            font-weight: 500;
        }
        footer {
            background-color: #111827;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #374151;
            text-align: center;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a237e;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                border-top: 2px solid #ff6b9d;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0.7rem 0;
                text-align: center;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                width: 100%;
                border-radius: 8px;
            }
            article,
            .interactive-section {
                padding: 1.8rem;
            }
        }
