/* ==========================
   RECEIVE PAGE STYLES
   ========================== */

#receive-page {
    padding-bottom: 30px;
}

/* Receive Header */
.receive-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #1A1D29;
    border-bottom: 1px solid #2A2F3F;
    gap: 12px;
    z-index: 100;
}

.receive-header h1 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    flex: 1;
}

/* Coin Info Section */
.coin-info-section {
    display: flex;
    justify-content: center;
    padding: 20px 20px 16px;
}

.coin-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px 12px 12px;
    background: #242938;
    border: 1.5px solid #2A2F3F;
    border-radius: 16px;
}

.coin-badge .coin-logo {
    width: 52px;
    height: 52px;
    background: #2A2F3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.coin-badge .coin-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coin-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.coin-details .coin-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.coin-network {
    font-size: 15px;
    font-weight: 600;
    color: #9CA3B8;
}

/* QR Code Section */
.qr-section {
    display: flex;
    justify-content: center;
    padding: 0 20px 20px;
}

.qr-container {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-code {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.qr-code canvas {
    max-width: 100%;
    height: auto !important;
}

/* Address Section */
.address-section {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-label {
    font-size: 13px;
    font-weight: 600;
    color: #6B7088;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.address-container {
    width: 100%;
    background: #242938;
    border: 1px solid #2A2F3F;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.address-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    word-break: break-all;
    line-height: 1.6;
    text-align: center;
}

.copy-address-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    width: 235px;
    background: rgba(255, 127, 80, 0.1);
    border: 1.5px solid rgba(255, 127, 80, 0.4);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #FF7F50;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.copy-address-btn:hover {
    background: rgba(255, 127, 80, 0.15);
    border-color: rgba(255, 127, 80, 0.6);
}

.copy-address-btn svg {
    width: 18px;
    height: 18px;
}

.copy-address-btn.copied {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22C55E;
}

/* Warning Section */
.warning-section {
    margin: 0 20px 20px;
    padding: 14px 16px;
    background: rgba(255, 127, 80, 0.08);
    border: 1px solid rgba(255, 127, 80, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.warning-icon {
    width: 22px;
    height: 22px;
    color: #FF7F50;
    flex-shrink: 0;
    margin-top: 1px;
}

.warning-icon svg {
    width: 100%;
    height: 100%;
}

.warning-text {
    font-size: 13px;
    color: #FF7F50;
    line-height: 1.5;
    font-weight: 400;
}

/* Action Section */
.action-section {
    padding: 0 20px;
}

.share-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #242938;
    border: 1px solid #2A2F3F;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #9CA3B8;
    cursor: pointer;
    transition: all 0.3s;
}

.share-btn:hover {
    background: #2A2F3F;
    border-color: #343A4D;
    color: #fff;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}
