/* Сброс стандартных отступов */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

/* Центрирование контента */
.welcome-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.welcome-content {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
    max-width: 450px;
}

/* Логотип */
.university-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* Заголовок */
.welcome-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

/* Описание */
.system-description {
    margin-bottom: 30px;
}

.system-description p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.highlight {
    color: #000;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

/* Кнопки приложений */
.app-links {
    display: flex;
    flex-direction: column; /* На мобильных всегда в столбик */
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.app-links a {
    display: block;
    width: 100%;
    max-width: 220px;
    transition: transform 0.2s ease;
}

.app-links a:active {
    transform: scale(0.96);
}

.app-links img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Подсказка снизу */
.login-prompt {
    font-size: 14px;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.platonus-text {
    color: #444;
    font-weight: 600;
}

/* Адаптация для компьютеров */
@media (min-width: 600px) {
    .app-links {
        flex-direction: row;
        justify-content: center;
    }
    .welcome-content {
        padding: 50px;
    }
    .welcome-title {
        font-size: 32px;
    }
}