body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(Elements/GradientBG.jpg);
    background-size: cover;
    color: #333;
}


.buy-text {
    width: 95%;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: #ffffff99;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
}


.buy-text .centered-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}


.buy-text p {
    padding: 10px;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #444;
}


.buy-text h3 {
    text-align: center;
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #222;
    font-weight: bold;
}


.wallets-section {
    margin: 40px auto 30px auto;
    width: 95%;
    max-width: 800px;
    background: #ffffff99;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
}


.wallets-section h2 {
    text-align: center;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-size: 2.3rem;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.07);
}


.wallets-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    width: 100%;
}


.wallet-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    padding: 18px 24px 14px 24px;
    width: 98%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 18px;
    gap: 10px;
}

.wallet-card-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}


/* Кружок с логотипом */
.wallet-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.wallet-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Контент по центру */
.wallet-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1 1 auto;
}

.wallet-title {
    font-weight: bold;
    color: #2a2a2a;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 2px;
    margin-top: 2px;
}

.wallet-network {
    color: #888;
    font-size: 0.98rem;
    text-align: left;
    margin-bottom: 0;
}

.wallet-address-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.wallet-address {
    font-family: monospace;
    font-size: 1.04rem;
    word-break: break-all;
    color: #444;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 8px 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin-bottom: 0;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.12);
    margin-top: 0;
}


/* Кнопка копирования справа */
.wallet-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-left: 12px;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.18s;
    display: flex;
    align-items: center;
}


.copy-btn:hover {
    background: #e0e0e0;
}


.copy-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    fill: #007bff;
    transition: fill 0.2s;
}


.copy-btn.copied .copy-icon {
    display: none;
}


.copy-btn .checkmark {
    display: none;
    width: 22px;
    height: 22px;
    color: #28a745;
}


.copy-btn.copied .checkmark {
    display: inline-block;
    animation: pop 0.3s;
}


@keyframes pop {
    0% { transform: scale(0.7); opacity: 0.5; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}


.buy-button-container {
    margin-top: 38px;
    text-align: center;
}


.buy-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Roboto', Arial, sans-serif;
    color: #fff;
    background-color: #0099ff; 
    text-decoration: none;
    border-radius: 25px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
    margin-bottom: 28px; 
}


.buy-button:hover {
    background-color: #1f76b8; 
    transform: scale(1.05); 
}

          

.wallet-info-text {
    width: 95%;
    max-width: 800px;
    margin: 30px auto 0 auto;
    padding: 20px;
    border-radius: 15px;
    color: #444;
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.8;
    box-sizing: border-box;
}

.wallet-info-text a {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}
