@font-face {
    font-family: 'Coinbase Sans';
    src: url('https://static-assets.coinbase.com/fonts/coinbasesans/CoinbaseSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Coinbase Sans';
    src: url('https://static-assets.coinbase.com/fonts/coinbasesans/CoinbaseSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Coinbase Display';
    src: url('https://static-assets.coinbase.com/fonts/coinbasedisplay/CoinbaseDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Coinbase Display';
    src: url('https://static-assets.coinbase.com/fonts/coinbasedisplay/CoinbaseDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Coinbase Text';
    src: url('https://static-assets.coinbase.com/fonts/coinbasetext/CoinbaseText-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Coinbase Mono';
    src: url('https://static-assets.coinbase.com/fonts/coinbasemono/CoinbaseMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Coinbase Icons';
    src: url('https://static-assets.coinbase.com/fonts/coinbaseicons/CoinbaseIcons-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Coinbase Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: rgb(10, 11, 13);
    color: rgb(255, 255, 255);
    overflow-y: auto;
    min-height: 100vh;
}

.wallet-container {
    width: 100%;
    max-width: 520px;
    min-height: 750px;
    height: auto;
    margin: 20px auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.content-wrapper {
    width: 100%;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.spacer {
    height: 43px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 24px 32px;
    position: relative;
    z-index: 1;
}

.text-animation {
    opacity: 1;
    transform: translateY(-24px);
    animation: fadeInUp 0.6s ease-out;
    margin-bottom: 32px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-24px);
    }
}

.title {
    font-family: 'Coinbase Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 2.25rem;
    text-align: center;
    margin-bottom: 40px;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transform: translateY(-24px);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.btn {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.btn-primary {
    background-color: rgb(255, 255, 255);
    color: rgb(10, 11, 13);
}

.btn-primary:hover {
    background-color: rgb(247, 247, 247);
    opacity: 0.88;
}

.btn-primary:active {
    background-color: rgb(244, 244, 244);
    opacity: 0.82;
    transform: scale(0.98);
}

.btn-secondary {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 0px solid transparent;
}

.btn-secondary:hover {
    background-color: rgb(17, 18, 20);
    opacity: 0.88;
}

.btn-secondary:active {
    background-color: rgb(21, 22, 24);
    opacity: 0.82;
    transform: scale(0.98);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 16px;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Responsive design */
@media (min-width: 768px) {
    .wallet-container {
        max-width: 540px;
        min-height: 760px;
        border-radius: 24px;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }
}

@media (max-width: 374px) {
    .title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .main-content {
        padding: 0 16px 24px;
    }
}
