:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2a2a2a;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-magenta: #9D4EDD;
    --accent-magenta-hover: #bb86fc;
    --white: #ffffff;
}

body {
    background-color: var(--primary-black);
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

a {
    color: var(--accent-magenta);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #ff6b99;
}

/* Floating Continue Conversion Button */
.floating-continue-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #9D4EDD 0%, #bb86fc 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: slideInBounce 0.6s ease-out;
}

.floating-continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(157, 78, 221, 0.6);
    color: white;
}

.floating-continue-btn .btn-icon {
    color: #4caf50;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.floating-continue-btn .btn-text {
    white-space: nowrap;
}

@keyframes slideInBounce {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

    60% {
        transform: translateX(-10px);
        opacity: 1;
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .floating-continue-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        border-radius: 60px;
    }

    .floating-continue-btn .btn-icon {
        font-size: 1rem;
    }
}
