* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        --primary: #8a2be2;
        --primary-light: #a35cff;
        --primary-dark: #6a1cb0;
        --accent: #ff3e85;
        --text: #ffffff;
        --dark-bg: #121212;
        --card-bg: #1e1e1e;
        --border-radius: 12px;
    }
    
    body {
        background: linear-gradient(135deg, var(--dark-bg), #000000);
        color: var(--text);
        font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-x: hidden;
        line-height: 1.6;
    }
    
    @keyframes gradientText {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    h1 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        font-weight: 800;
        margin: 32px 0 24px;
        text-align: center;
        background: linear-gradient(90deg, #ff3e85, #8a2be2, #3e8aff, #2de2ab);
        background-size: 300% 300%;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        animation: gradientText 6s ease infinite;
        letter-spacing: -0.03em;
        line-height: 1.1;
        text-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
    }
    
    #searchForm {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 24px;
        padding: 0 16px;
        position: relative;
    }
    
    #searchInput {
        width: 100%;
        padding: 18px 24px;
        border-radius: 30px;
        border: none;
        outline: none;
        font-size: 1.1rem;
        background: rgba(30, 30, 30, 0.8);
        backdrop-filter: blur(10px);
        color: var(--text);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(138, 43, 226, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #searchInput::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    #searchInput:focus {
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(138, 43, 226, 0.3), 0 8px 16px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
    }
    
    button {
        padding: 16px 28px;
        border-radius: 30px;
        border: none;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        margin-left: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
        position: relative;
        overflow: hidden;
    }
    
    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(138, 43, 226, 0.6);
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
    }
    
    button:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(138, 43, 226, 0.3);
    }
    
    button::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        opacity: 0;
        transform: scale(0.5);
        transition: transform 0.8s, opacity 0.8s;
    }
    
    button:hover::after {
        opacity: 1;
        transform: scale(1);
    }
    
    #iframe {
        width: 95%;
        max-width: 1400px;
        height: calc(100vh - 200px);
        border: none;
        border-radius: var(--border-radius);
        background-color: var(--card-bg);
        margin: 0 auto 24px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        position: relative;
    }
    
    #iframe:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(138, 43, 226, 0.3);
    }
    
    #iframe::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.8), transparent);
    }
    
    .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.85);
        backdrop-filter: blur(15px);
        padding: 10px 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .footer:hover {
        transform: translateY(-3px);
    }
    
    .footer-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        max-width: 800px;
        padding: 0 12px;
        margin: 0 auto;
    }
    
    .footer-nav a {
        text-decoration: none;
    }
    
    .footer-button {
        padding: 8px 16px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: white;
        border: none;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .footer-button:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        background: linear-gradient(135deg, var(--accent), var(--primary-light));
    }
    
    .footer-button:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    
    .footer-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
        transform: translateY(100%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .footer-button:hover::before {
        transform: translateY(0);
    }
    
    @keyframes glassEffect {
        0% { opacity: 0; }
        50% { opacity: 0.5; }
        100% { opacity: 0; }
    }
    
    .footer-button:hover::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
        animation: glassEffect 1.5s infinite;
    }
    
    /* Responsive design */
    @media (max-width: 768px) {
        h1 {
            font-size: clamp(2rem, 6vw, 3rem);
            margin: 24px 0 16px;
        }
        
        #searchForm {
            flex-direction: column;
            gap: 12px;
        }
        
        button {
            margin-left: 0;
            width: 100%;
            padding: 14px;
        }
        
        #searchInput {
            padding: 16px;
        }
        
        .footer-nav {
            gap: 6px;
        }
        
        .footer-button {
            padding: 7px 14px;
            font-size: 0.85rem;
        }
        
        #iframe {
            height: calc(100vh - 240px);
        }
    }
    
    @media (max-width: 480px) {
        h1 {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            margin: 16px 0 12px;
        }
        
        .footer {
            padding: 8px 0;
        }
        
        .footer-nav {
            gap: 5px;
        }
        
        .footer-button {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
        
        #iframe {
            width: 92%;
            height: calc(100vh - 220px);
        }
    }
