:root {
    --primary-color: #00bcf2;
    --primary-dark: #0098c4;
    --primary-light: #4dd2f6;
    --bg-dark: #070b14;
    --bg-card: rgba(15, 23, 42, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 40%;
    left: 60%;
    opacity: 0.2;
    animation-duration: 15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 500px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.card-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 188, 242, 0.4));
    z-index: 10;
}

/* Glass Card */
.glass-effect {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.icon-container {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 188, 242, 0.2), rgba(0, 188, 242, 0.05));
    border: 1px solid rgba(0, 188, 242, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 188, 242, 0.2);
}

.announcement-box {
    background: rgba(0, 188, 242, 0.1);
    border: 1px solid rgba(0, 188, 242, 0.2);
    border-radius: 16px;
    padding: 1.2rem 1.2rem 1rem;
    margin-bottom: 2rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.announcement-box p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

.announcement-box strong {
    color: var(--primary-light);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 188, 242, 0.4);
}

.heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary-light);
    font-weight: 600;
    position: relative;
}

/* Mock Search Browser */
.search-demonstration {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.mock-browser {
    background: #202124;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3c4043;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transform: rotateX(5deg);
    transition: transform 0.3s ease;
}

.mock-browser:hover {
    transform: rotateX(0deg) scale(1.02);
}

.mock-browser-header {
    background: #323639;
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #1f1f1f;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mock-search-bar {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.google-logo {
    height: 24px;
    opacity: 0.9;
}

.search-input-wrapper {
    background: #303134;
    border: 1px solid #5f6368;
    border-radius: 24px;
    width: 100%;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.typing-text {
    color: #e8eaed;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
}

.cursor {
    color: var(--primary-color);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Actions */
.action-section {
    position: relative;
}

.copy-btn {
    background: rgba(0, 188, 242, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 188, 242, 0.4);
    transform: translateY(-2px);
}

.copy-btn:active {
    transform: translateY(0);
}

/* Toast Notification */
.toast {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    bottom: -50px;
}

/* Footer */
.footer {
    margin-top: 3rem;
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.85rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .heading {
        font-size: 1.75rem;
    }
    
    .glass-effect {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .card-logo {
        max-width: 60px;
        top: 15px;
        right: 15px;
    }
}
