@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'D-DIN';
    src: url('../fonts/D-DIN.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'D-DIN';
    src: url('../fonts/D-DIN-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'D-DINExp';
    src: url('../fonts/D-DINExp.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --bg-color: #151618;
    /* Nearly black */
    --btn-import-bg: #2b2d3a;
    /* Dark slate blue */
    --text-yellow: #ffc145;
    /* Yellow text for import button */
    --btn-create-bg: #ffc145;
    /* Yellow background for create button */
    --btn-create-text: #000000;
}

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

body {
    font-family: 'D-DIN', 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* supports safe areas for mobile web */
    padding-top: max(0px, env(safe-area-inset-top));
    padding-bottom: max(0px, env(safe-area-inset-bottom));
}

.wallet-setup-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    max-width: 480px;
    /* Optimal layout max-width for mobile view */
    margin: 0 auto;
    padding: 30px 24px;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    padding: 40px 0;
}

.image-section img {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bottom-section {
    padding-bottom: 24px;
    /* Space from the bottom edge */
    display: flex;
    flex-direction: column;
}

.gradient-text {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #9ce6e0 0%, #aede7e 50%, #facc61 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}

.action-buttons {
    display: flex;
    flex-direction: column;
}

.btn-import,
.btn-create {
    width: 100%;
    padding: 18px 0;
    border-radius: 12px;
    /* Smooth rounded corners */
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.1s;
    text-align: center;
    text-decoration: none;
    /* Removes underline on a tags */
    display: inline-block;
    /* Ensure proper height/padding layout for a tags */
}

.btn-import:active,
.btn-create:active {
    opacity: 0.8;
    transform: scale(0.98);
}

.btn-import {
    background-color: var(--btn-import-bg);
    color: var(--text-yellow);
    margin-bottom: 16px;
}

.btn-create {
    background-color: var(--btn-create-bg);
    color: var(--btn-create-text);
}