.create-panel
{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--bg-custom-op1);
    backdrop-filter: blur(3px);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 100px 16px 16px;
}

.create-card
{
    max-width: 500px;
    position: relative;
    width: 100%;
    height: 240px; /* можно 200–300px */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.create-card img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.create-card.club img
{
    filter: brightness(0.72) saturate(1.1) hue-rotate(-18deg);
}

.create-text
{
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.create-close
{
    background: var(--accent-custom);
    color: #fff;
    width: min(100%, 360px);
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.create-grid.top
{
    transform: translate(0, -100dvh);
}
