/* Quick Play Landing Page - Styles */

:root {
    --color-primary: #080A52;
    --color-accent: #E11E86;
    --color-secondary: #640A56;
    --color-highlight: #FAE9B3;
    --color-base: #FFFFFF;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--color-base);
}

.font-outfit { font-family: 'Outfit', sans-serif; }
.font-dm-sans { font-family: 'DM Sans', sans-serif; }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(225, 30, 134, 0.4); }
    50% { box-shadow: 0 8px 48px rgba(225, 30, 134, 0.7); }
}

@keyframes slide-in-down {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slide-out-up {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-slide-in { animation: slide-in-down 0.5s ease-out forwards; }
.animate-slide-out { animation: slide-out-up 0.5s ease-in forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }

/* ========================================
   FLOATING NOTIFICATION
======================================== */
.notification {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-highlight);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.5s ease;
}

@media (min-width: 640px) {
    .notification {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 320px;
        width: auto;
    }
}

.notification-icon {
    background: rgba(225, 30, 134, 0.1);
    padding: 8px;
    border-radius: 50%;
    display: flex;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.notification-action {
    font-size: 12px;
    color: rgba(8, 10, 82, 0.6);
}

.notification-time {
    font-size: 12px;
    color: rgba(8, 10, 82, 0.4);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 96px 24px 0;
    background: var(--color-primary);
    overflow: hidden;
    border-radius: 0 0 32px 32px;
}

@media (min-width: 640px) {
    .hero {
        padding-top: 128px;
        border-radius: 0 0 64px 64px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    mix-blend-mode: screen;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 896px;
    margin: 0 auto;
}

.brand {
    margin-bottom: 32px;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: white;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .brand-text { font-size: 30px; }
}

.brand-accent { color: var(--color-accent); }

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 32px;
    box-shadow: 0 0 40px rgba(250, 233, 179, 0.3);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-highlight);
}

.trust-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-highlight);
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: white;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .hero-headline { font-size: 48px; }
}

@media (min-width: 1024px) {
    .hero-headline { font-size: 72px; }
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-highlight);
    margin-bottom: 40px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-subheadline { font-size: 18px; }
}

@media (min-width: 1024px) {
    .hero-subheadline { font-size: 20px; }
}

/* ========================================
   CTA BUTTON
======================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 24px 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .cta-btn {
        width: auto;
        font-size: 20px;
    }
}

.cta-btn:hover {
    background: #c91a75;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(225, 30, 134, 0.6);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   HERO IMAGE
======================================== */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1024px;
    margin: 48px auto 0;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-image-container { margin-top: 64px; }
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ========================================
   TRUST SECTION
======================================== */
.trust-section {
    padding: 64px 24px;
    background: white;
}

@media (min-width: 640px) {
    .trust-section { padding: 96px 24px; }
}

.section-container {
    max-width: 1152px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .section-header { margin-bottom: 64px; }
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.025em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .section-title { font-size: 36px; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 48px; }
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(8, 10, 82, 0.7);
    max-width: 672px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-subtitle { font-size: 18px; }
}

/* ========================================
   FEATURE CARDS
======================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
    background: white;
    border: 1px solid rgba(250, 233, 179, 0.5);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 24px rgba(8, 10, 82, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(8, 10, 82, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(225, 30, 134, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-primary);
}

.feature-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(8, 10, 82, 0.7);
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-section {
    padding: 64px 24px;
    background: var(--color-highlight);
}

@media (min-width: 640px) {
    .how-section { padding: 96px 24px; }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
    background: var(--color-primary);
    color: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(225, 30, 134, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: rgba(225, 30, 134, 0.3);
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.step-desc {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

/* ========================================
   SOCIAL PROOF SECTION
======================================== */
.social-section {
    padding: 64px 24px;
    background: white;
}

@media (min-width: 640px) {
    .social-section { padding: 96px 24px; }
}

.social-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(8, 10, 82, 0.05);
    padding: 12px 24px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.avatars {
    display: flex;
    margin-left: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border: 2px solid white;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar svg {
    width: 16px;
    height: 16px;
    color: white;
}

.social-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

.footer-note {
    margin-top: 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(8, 10, 82, 0.4);
}

/* ========================================
   STICKY BOTTOM BAR
======================================== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 50;
    display: flex;
    justify-content: center;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-bar.visible {
    transform: translateY(0);
}

@media (min-width: 640px) {
    .sticky-bar { display: none; }
}

.sticky-bar .cta-btn {
    width: 100%;
    padding: 20px 32px;
}
