body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('assets/bg.png') no-repeat center center fixed;
background-size: contain;
    background-size: cover;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.title {
    color: #fff;
    font-size: 1.5em;
    margin-top: 10px;
    font-weight: bold;
}

.button-container {
    margin: 20px 0;
}

.button {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14.5px);
    -webkit-backdrop-filter: blur(14.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.crypto-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.crypto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 250px;
}

.crypto img {
    width: 30px;
    height: auto;
}

.crypto .address {
    flex-grow: 1;
    color: #fff;
    font-size: 0.9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crypto .copy-button {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.crypto .copy-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.crypto-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 10px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    margin: 10px auto;
}

.crypto-trigger img {
    width: 40px;
    height: auto;
    transition: transform 0.2s ease;
}

.crypto-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.crypto-trigger img:hover {
    transform: scale(1.2);
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 10px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.link img {
    width: 40px;
    height: auto;
    transition: transform 0.2s ease;
}

.link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.link img:hover {
    transform: scale(1.2);
}
