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

/* База страницы */
html, body {
    height: auto;
    min-height: 100vh;      /* градиент на всю высоту экрана */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    background: linear-gradient(135deg, #5b7fea 0%, #6b63b5 100%);
    -webkit-font-smoothing: antialiased;
}

/* Основной контейнер приложения */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 12px;
    padding-bottom: 76px;   /* место под фиксированный таббар */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Хедер с логотипом */
.header {
    text-align: center;
    padding: 16px 0 12px;
    color: #fff;
    flex-shrink: 0;
}

.logo {
    font-size: 40px;
    margin-bottom: 6px;
    animation: float 3s ease-in-out infinite;
}

.app-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 2px;
}

.app-subtitle {
    font-size: 13px;
    opacity: 0.9;
}

/* Типографика */
h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1d1d1f;
    display: flex;
    align-items: center;
}

.subtitle {
    color: #86868b;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.4;
}

/* Утилиты */
.hidden {
    display: none !important;
}
