/* Crypto Widget Styles */
.crypto-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s ease;
}

.cw-content {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.cw-header {
    text-align: center;
    margin-bottom: 25px;
}

.cw-title {
    font-family: 'Anton', sans-serif;
    color: #ffd700;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Coin Selection */
.coin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 12px;
}

.coin-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.6;
}

.coin-tab.active {
    background: #ffd700;
    color: #000;
    opacity: 1;
}

.cw-payment-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.network-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wallet-address-container {
    background: #000;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    position: relative;
}

.wallet-address-text {
    font-family: monospace;
    font-size: 13px;
    color: #ffd700;
    word-break: break-all;
    display: block;
    margin-right: 40px;
}

.copy-icon-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffd700;
    cursor: pointer;
    font-size: 18px;
}

/* Verification Form */
.cw-verify-form {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.cw-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 8px;
}

.cw-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

.cw-input:focus {
    outline: none;
    border-color: #ffd700;
}

.cw-submit-btn {
    width: 100%;
    background: #ffd700;
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cw-submit-btn:hover {
    background: #ffea00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.cw-close {
    position: absolute;
    right: 25px;
    top: 25px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.5;
}

.cw-close:hover {
    opacity: 1;
}