@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #1b2027;
    color: #ffffff;
    font-family: "Golos Text", sans-serif;
}
.app {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
}
.page-container {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 70px;
}
.page {
    padding: 16px;
}
.card {
    position: relative;
    background: #242d38;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}
.card h3 {
    margin-bottom: 12px;
}
.title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.subtitle {
    font-size: 16px;
    color: #aaa;
    text-align: center;
    margin-bottom: 20px;
}
.button {
    background: #007aff;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}
.button:active {
    background: #0066cc;
}
.button-secondary {
    background: #1b2027;
    border-radius: 100px;
}
.input {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 14px;
    color: white;
    font-size: 16px;
    width: 100%;
    margin: 8px 0;
}
.input:focus {
    outline: none;
    border-color: #007aff;
}
.list-item {
    position: relative;
    background: #1b2027;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
}
.badge {
    background: #007aff;
    color: white;
    font-size: 14px;
    line-height: 22px;
    padding: 4px 12px;
    border-radius: 100px;
}
.loading {
    text-align: center;
    padding: 40px;
    color: #aaa;
}
.gradient-border:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(150deg, #ffffff26, #fff0 75%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 30;
}
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1deg, #242d38, transparent);
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    z-index: 1000;
}
.bar-item {
    background: none;
    border: none;
    color: #aaa;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px;
    flex: 1;
}
.bar-item.active {
    color: white;
}
.bar-item .icon {
    font-size: 20px;
}