/* ===== CARD SWAP COMPONENT ===== */

.card-swap-container {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(5%, 20%);
    transform-origin: bottom right;
    perspective: 900px;
    overflow: visible;
}

.card-swap-card {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 20, 0.85);
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    overflow: hidden;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card inner content */
.card-swap-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.card-swap-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.card-swap-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.card-swap-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-swap-highlights li {
    display: flex;
    align-items: center;
    color: #bbb;
    font-size: 0.9rem;
    font-weight: 400;
}

.card-swap-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Accent bar at bottom of card */
.card-swap-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Card number watermark */
.card-swap-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Inter', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0.06;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .card-swap-container {
        transform: translate(25%, 25%) scale(0.75);
    }
}

@media (max-width: 480px) {
    .card-swap-container {
        transform: translate(25%, 25%) scale(0.55);
    }
}