/* CSS Kartu ATM */
.atm-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--theme-color), #2f2f2f);
    border-radius: 20px;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 16px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 30px;
}

.bank-logo img {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 65px;
    max-width: 22%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.chip {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 36px;
    background: gold;
    border-radius: 6px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.rekening-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.rekening-info .no-rek {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
}

.rekening-info .nama {
    font-size: 1.5rem;
    margin-top: 4px;
}

.copy-button {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: #fff;
    color: var(--theme-color);
    border: none;
    padding: 6px 12px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-button:hover {
    background-color: var(--navigation-bg);
}

@media (max-width: 420px) {
    .chip {
        width: 40px;
        height: 28px;
    }

    .bank-logo img {
        width: 40px;
    }

    .rekening-info .no-rek {
        font-size: 1.3rem;
    }

    .rekening-info .nama {
        font-size: 1.3rem;
    }

    .copy-button {
        font-size: 1.3rem;
        padding: 5px 10px;
    }
}