@font-face {
    font-family: "Inter-Regular";
    src: url(/tensor/fonts/Inter-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter-Regular", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow: auto;
    color: white;
    text-align: center;
    background: url(/warm_calendar2025-2026/img/background.jpg) no-repeat top center fixed;
    background-size: cover;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: default;
    min-width: 320px;
}


.logo {
    text-align: center;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 18px;
    font-weight: 400;
    color: #fff;
}

.card {
    text-align: center;
    padding: 50px 50px 70px;
    background: rgb(0 0 0 / 40%);
    border-radius: 28px;
    border: 3px solid #98784d;
}

.page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-width: 320px;
}

.title {
    font-size: 50px;
    font-weight: 500;
    word-wrap: break-word;
    margin-bottom: 50px;
    line-height: 1.1;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    justify-items: center;
}

.day-btn {
    width: 250px;
    border: none;
    border-radius: 999px;
    background: #0B3B71;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    padding: 12px 18px;
    transition: 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.day-btn:hover {
    transform: translateY(-1px);
}

.day-btn.today {
    background: #0B3B71;
    border: 3px solid #7E6543;
}

@media (max-width: 560px) {
    body {
        padding: 5px;
        justify-content: center;
        background: url(/warm_calendar2025-2026/img/background3.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        background-attachment: fixed;
        height: 100%;
        overflow: hidden;
    }

    .logo {
        font-size: 56px;
        margin-bottom: 14px;
    }

    .card {
        padding: 40px 30px 60px;
        border-radius: 22px;
        width: 100%;
    }

    .page {
        width: 100%;
        padding: 10px;
    }

    .title {
        font-size: 24px;
        margin-bottom: 40px;
        font-weight: 600;
    }

    .days-grid {
        gap: 12px;
    }

    .day-btn.today {
        background: #0B3B71;
        border: 2px solid #7E6543;
    }

    .day-btn {
        border: none;
        background: #0B3B71;
        color: #fff;
        cursor: pointer;
        width: 100%;
        min-width: auto;
        font-weight: 400;
        border-radius: 30px;
        transition: 0.15s ease;
        -webkit-tap-highlight-color: transparent;
        font-size: 16px;
        padding: 10px 18px;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: 20px;
    }

    .day-btn {
        font-size: 14px;
        min-height: 46px;
    }
}