@font-face {
    font-family: 'Kreadon';
    src: url('ofont.ru_Kreadon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

button {
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

body {
    font-family: 'Kreadon', 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #000000 25%, #251827 50%, #692e57 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #2d3748;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Декоративные элементы фона */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.menu-screen {
    opacity: 0;
    animation: containerFadeIn 0.6s ease forwards;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header {
    margin-bottom: 30px;
}

/* Логотип по центру экрана (начальное состояние) */
.logo-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoCenterFadeOut 0.8s ease 2.5s forwards;
}

.logo-container-center {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-subtitle {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Kreadon', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    animation: subtitleFadeIn 0.8s ease 0.3s forwards, subtitleFadeOut 0.5s ease 2.5s forwards;
    text-transform: uppercase;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes subtitleFadeOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes logoCenterFadeOut {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
        pointer-events: none;
    }
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoMoveToHeader 1s ease 2.5s forwards;
}

@keyframes logoMoveToHeader {
    from {
        opacity: 0;
        transform: scale(1.25) translateY(-100px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-layer-1 {
    mask-image: linear-gradient(to right, black, transparent);
    -webkit-mask-image: linear-gradient(to right, black, transparent);
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    mask-position: -100% 0;
    -webkit-mask-position: -100% 0;
    animation: revealFromLeft 1.2s ease 0.1s forwards;
}

.logo-container-center .logo-layer-1 {
    animation: revealFromLeft 1.2s ease 0.1s forwards;
}

.logo-container .logo-layer-1 {
    animation: revealFromLeft 0.8s ease 2.5s forwards;
}

.logo-layer-2 {
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    mask-size: 100% 200%;
    -webkit-mask-size: 100% 200%;
    mask-position: 0 -100%;
    -webkit-mask-position: 0 -100%;
    animation: revealFromTop 1.2s ease 0.1s forwards;
}

.logo-container-center .logo-layer-2 {
    animation: revealFromTop 1.2s ease 0.1s forwards;
}

.logo-container .logo-layer-2 {
    animation: revealFromTop 0.8s ease 2.5s forwards;
}

@keyframes revealFromLeft {
    from {
        mask-position: -100% 0;
        -webkit-mask-position: -100% 0;
    }
    to {
        mask-position: 0 0;
        -webkit-mask-position: 0 0;
    }
}

@keyframes revealFromTop {
    from {
        mask-position: 0 -100%;
        -webkit-mask-position: 0 -100%;
    }
    to {
        mask-position: 0 0;
        -webkit-mask-position: 0 0;
    }
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header h1 {
    font-family: 'Kreadon', serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: titleGlow 2s ease-in-out infinite;
    font-style: italic;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.subtitle {
    font-family: 'Kreadon', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
    letter-spacing: 0.5px;
}

.game-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: slideUpScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.player-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.player-label {
    font-family: 'Kreadon', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.player-symbol {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.player-symbol svg {
    width: 32px;
    height: 32px;
}

.icon-x {
    color: #ff6b9d;
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.icon-o {
    color: #a78bfa;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.vs {
    font-family: 'Kreadon', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-style: italic;
    letter-spacing: 1px;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.9) rotateY(10deg);
    animation: boardAppear 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes boardAppear {
    from {
        opacity: 0;
        transform: scale(0.9) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.cell {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}

.cell.animate-in,
.cell.occupied {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.cell.animate-in {
    animation: cellPopIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes cellPopIn {
    from {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cell:hover::before {
    left: 100%;
}

.cell svg {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.cell .icon-x {
    color: #ff6b9d;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.6));
}

.cell .icon-o {
    color: #a78bfa;
    filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.6));
}

.cell:hover:not(.occupied) {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 20px rgba(255, 255, 255, 0.2);
}

.cell.occupied {
    cursor: not-allowed;
}

.cell.winning {
    background: rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.6);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.5),
                inset 0 0 20px rgba(255, 107, 157, 0.2);
    animation: pulse 0.8s ease infinite;
    opacity: 1 !important;
    transform: scale(1) rotate(0deg) !important;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 107, 157, 0.5),
                    inset 0 0 20px rgba(255, 107, 157, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.7),
                    inset 0 0 30px rgba(255, 107, 157, 0.3);
    }
}

.status-message {
    font-family: 'Kreadon', sans-serif;
    min-height: 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-top: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 0.6s ease 1.8s forwards;
    letter-spacing: 0.3px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 40px 30px;
    max-width: 90%;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    font-family: 'Kreadon', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    font-style: italic;
    letter-spacing: 0.5px;
}

.modal-body {
    font-family: 'Kreadon', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.promo-code {
    font-family: 'Kreadon', sans-serif;
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 30px;
    border-radius: 20px;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 4px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 30px rgba(255, 107, 157, 0.4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    font-family: 'Kreadon', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 18px 40px;
    border-radius: 26px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.3),
                inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.4px;
}


/* Меню */
.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    opacity: 1;
}

/* Анимация появления для отдельных кнопок */
.menu-btn.animate-in {
    animation: menuButtonFadeIn 0.6s ease forwards;
}

@keyframes menuButtonFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Базовые стили для всех кнопок меню - применяются сразу */
.menu-btn {
    font-family: 'Kreadon', sans-serif;
    padding: 24px 32px;
    width: 100%;
    background: rgb(255 255 255 / 11%)  !important;
    backdrop-filter: blur(30px);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 28px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-icon-decorative {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    stroke: currentColor;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.menu-btn .btn-icon-decorative {
    width: 70px;
    height: 70px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(15deg);
}

.menu-btn .btn-icon-decorative svg {
    width: 100%;
    height: 100%;
}

.btn-text {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Кнопка "Назад" */
.back-btn {
    font-family: 'Kreadon', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.25);
}


/* Новости */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.news-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.news-date {
    font-family: 'Kreadon', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.news-title {
    font-family: 'Kreadon', serif;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-style: italic;
    letter-spacing: 0.3px;
}

.news-text {
    font-family: 'Kreadon', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

/* Форма записи */
.booking-form {
    margin-top: 20px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Kreadon', sans-serif;
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.form-input {
    font-family: 'Kreadon', sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
    -webkit-appearance: none;
    appearance: none;
}

input[type="date"].form-input {
    width: 100%;
    min-width: 0;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input option {
    background: #251827;
    color: white;
}

/* Список записей */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.booking-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.booking-date {
    font-family: 'Kreadon', serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-style: italic;
    letter-spacing: 0.3px;
}

.booking-time {
    font-family: 'Kreadon', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.booking-name {
    font-family: 'Kreadon', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.booking-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.btn-cancel {
    font-family: 'Kreadon', sans-serif;
    background: #ff6b9d !important;
    background-image: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.4px;
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4),
                0 2px 8px rgba(255, 107, 157, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cancel:hover {
    background: #ff4d7a !important;
    background-image: linear-gradient(135deg, #ff4d7a 0%, #ff6b9d 100%) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5),
                0 4px 12px rgba(255, 107, 157, 0.4);
    transform: translateY(-2px);
}


.empty-state {
    font-family: 'Kreadon', sans-serif;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    padding: 40px 20px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

/* Вторичная кнопка */
.btn-secondary {
    font-family: 'Kreadon', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    padding: 14px 30px;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
}


.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

