body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background: #f5f5f5;
}

.wallet-button {
    background: #3375BB;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-button:hover {
    background: #2a5a94;
    transform: translateY(-1px);
}

.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.qr-content {
    background: #1a1a1a;
    border-radius: 28px;
    padding: 32px 28px;
    text-align: center;
    color: white;
    width: 360px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.qr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 0 4px;
}

.back-btn, .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.back-btn:hover, .close-btn:hover {
    opacity: 0.7;
}

.qr-code-container {
    background: white;
    padding: 0;
    border-radius: 28px;
    margin: 0 0 32px 0;
    display: inline-block;
    overflow: hidden;
}

.qr-instructions {
    color: white;
    margin: 0 0 32px 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
}

.copy-link-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    margin: 0 auto 32px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28%;
    font-size: 11px;
    font-weight: 500;
    box-sizing: border-box;
}

.copy-link-btn:hover {
    background: #333333;
}

.wallet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    background: #1e1d1d;
    padding: 13px 12px;
    border-radius: 12px;
}

.dont-have-text {
    color: white;
    font-size: 17px;
    font-weight: 400;
}

.get-btn {
    background: none;
    border: 1px solid #333333;
    color: #5773ff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 12px;
}

.get-btn:hover {
    background: rgba(74, 144, 226, 0.1);
}