/* ============================================
   Landing Page — v32
   ============================================ */

:root {
    --bg: #0a0a0f;
    --bg-card: #14141f;
    --text: #e0e0e0;
    --text-muted: #8888a0;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.25);
    --border: #22223a;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================
   Aapvo Bunny — drop-shadow follows the shape
   ============================================ */
.aapvo-bunny {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aapvo-bunny img {
    height: 44px;
    width: 44px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.7));
    transition: filter 0.6s ease;
}

.aapvo-bunny:hover {
    transform: scale(1.25);
}

.aapvo-bunny:hover img {
    filter: drop-shadow(0 0 18px rgba(16,185,129,0.95));
    animation: bunnyGlow 1.6s ease-in-out infinite;
}

@keyframes bunnyGlow {
    0%, 100% { filter: drop-shadow(0 0 18px rgba(16,185,129,0.95)); }
    50% { filter: drop-shadow(0 0 32px rgba(16,185,129,1)) drop-shadow(0 0 60px rgba(16,185,129,0.55)); }
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 24px 40px;
    width: 100%;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #34d399, #10b981, #059669, #34d399);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   Slider
   ============================================ */
.slider-wrap {
    margin-bottom: 28px;
}

.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    background: #0d0d14;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,10,15,0.75);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px var(--accent-glow);
}

.slider-arrow.left { left: 12px; }
.slider-arrow.right { right: 12px; }

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    transform: scale(1.4);
}

/* ============================================
   Buttons
   ============================================ */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    background: #34d399;
    box-shadow: 0 8px 36px rgba(16, 185, 129, 0.45);
    transform: translateY(-2px);
}

.btn svg { flex-shrink: 0; }

@media (max-width: 600px) {
    .hero { padding: 40px 14px 30px; }
    .hero h1 { font-size: 2rem; margin-bottom: 20px; }
    .slider { aspect-ratio: 4/3; border-radius: 10px; }
    .slider-arrow { width: 34px; height: 34px; }
    .btn { width: 100%; justify-content: center; }
    .aapvo-bunny img { height: 34px; width: 34px; }
    .aapvo-bunny { top: 14px; left: 14px; }
}
