.category-row {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.main-category {
    flex-shrink: 0;
    width: 420px;
}

.subcategories-side {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    overflow-x: auto;
    padding: 10px 0;
}

.card-newsletter {
    width: 100%;
    padding: 25px;
    background: #fff;
    border: 6px solid #000;
    transition: transform 0.3s, border-color 0.2s, background 0.3s, box-shadow 0.3s, color 0.3s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 8px 8px 0px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}

.bowling-card {
    box-shadow: 8px 8px 0px rgba(26, 188, 156, 0.8);
    border-color: #1abc9c;
}

.water-card {
    box-shadow: 8px 8px 0px rgba(30, 144, 255, 0.8);
    border-color: #1e90ff;
}

.children-card {
    box-shadow: 8px 8px 0px rgba(255, 105, 180, 0.8);
    border-color: #ff69b4;
}

.karaoke-card {
    box-shadow: 8px 8px 0px rgba(155, 89, 182, 0.8);
    border-color: #9b59b6;
}

.ice-card {
    box-shadow: 8px 8px 0px rgba(52, 152, 219, 0.8);
    border-color: #3498db;
}

.bowling-card:hover {
    background: linear-gradient(-45deg, #1abc9c 0%, #16a085 100%);
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.4), 0 6px 6px rgba(26, 188, 156, 0.3), 0 0 0 10px rgba(26, 188, 156, 0.1);
}

.water-card:hover {
    background: linear-gradient(-45deg, #1e90ff 0%, #00bfff 100%);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.4), 0 6px 6px rgba(30, 144, 255, 0.3), 0 0 0 10px rgba(30, 144, 255, 0.1);
}

.children-card:hover {
    background: linear-gradient(-45deg, #ff69b4 0%, #ffb6c1 100%);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4), 0 6px 6px rgba(255, 105, 180, 0.3), 0 0 0 10px rgba(255, 105, 180, 0.1);
}

.karaoke-card:hover {
    background: linear-gradient(-45deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 10px 20px rgba(155, 89, 182, 0.4), 0 6px 6px rgba(155, 89, 182, 0.3), 0 0 0 10px rgba(155, 89, 182, 0.1);
}

.ice-card:hover {
    background: linear-gradient(-45deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4), 0 6px 6px rgba(52, 152, 219, 0.3), 0 0 0 10px rgba(52, 152, 219, 0.1);
}

.card-newsletter:hover {
    color: white;
    transform: translate(-5px, -5px);
}

.card-newsletter:hover .card-newsletter__title,
.card-newsletter:hover .card-newsletter__content {
    color: white;
}

.card-newsletter:hover .card-newsletter__placeholder {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: white;
    color: #000;
}

.card-newsletter:hover .card-newsletter__button {
    background-color: #000;
    color: white;
    border-color: white;
}

.card-newsletter__title {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Bayon', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-newsletter__content {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 20px;
    z-index: 1;
    font-family: 'Bayon', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
}

.card-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1;
    margin-top: auto;
}

.card-newsletter__placeholder {
    padding: 12px;
    border: 3px solid #000;
    font-size: 16px;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    width: 100%;
    z-index: 1;
    background-color: white;
    min-height: 25px;
    cursor: default;
    user-select: none;
    border-radius: 10px;
    text-align: center;
    font-family: 'Bayon', sans-serif;
    box-sizing: border-box;
}

.card-newsletter__button {
    border: 3px solid #000;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s, color 0.3s, border-color 0.3s;
    width: 100%;
    z-index: 1;
    border-radius: 30px;
    font-family: 'Bayon', sans-serif;
    box-sizing: border-box;
    margin-top: 5px;
}

.card-newsletter__button::before {
    content: "Открыть →";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 1;
    border-radius: 30px;
    font-weight: bold;
}

.bowling-card .card-newsletter__button::before {
    background-color: #1abc9c;
}

.water-card .card-newsletter__button::before {
    background-color: #1e90ff;
}

.children-card .card-newsletter__button::before {
    background-color: #ff69b4;
}

.karaoke-card .card-newsletter__button::before {
    background-color: #9b59b6;
}

.ice-card .card-newsletter__button::before {
    background-color: #3498db;
}

.card-newsletter__button:hover::before {
    transform: translateY(0);
}

.card-newsletter__button:active {
    transform: scale(0.95);
}

@media (min-width: 680px) and (max-width: 900px) {
    .category-row {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .main-category {
        width: calc(270px + (420 - 270) * (100vw - 500px) / (900 - 500));
        flex-shrink: 0;
    }
    
    .card-newsletter {
        width: 100%;
        min-height: calc(268.38px + (405.38 - 268.38) * (100vw - 500px) / (900 - 500));
        height: auto;
        padding: calc(15px + (25 - 15) * (100vw - 500px) / (900 - 500));
    }
    
    .card-newsletter__title {
        font-size: calc(20px + (32 - 20) * (100vw - 500px) / (900 - 500));
        margin-bottom: calc(8px + (15 - 8) * (100vw - 500px) / (900 - 500));
        line-height: 1.2;
        max-height: calc(2.4 * (20px + (32 - 20) * (100vw - 500px) / (900 - 500)));
        overflow: hidden;
    }
    
    .card-newsletter__content {
        font-size: calc(13px + (18 - 13) * (100vw - 500px) / (900 - 500));
        margin-bottom: calc(10px + (20 - 10) * (100vw - 500px) / (900 - 500));
        line-height: 1.3;
        flex-grow: 1;
        overflow: hidden;
        max-height: calc(3 * (13px + (18 - 13) * (100vw - 500px) / (900 - 500)));
    }
    
    .card-newsletter__button {
        font-size: calc(12px + (18 - 12) * (100vw - 500px) / (900 - 500));
        padding: calc(8px + (12 - 8) * (100vw - 500px) / (900 - 500)) 
                 calc(15px + (20 - 15) * (100vw - 500px) / (900 - 500));
        margin-top: 0;
    }
    
    .card-newsletter__placeholder {
        font-size: calc(11px + (16 - 11) * (100vw - 500px) / (900 - 500));
        padding: calc(6px + (12 - 6) * (100vw - 500px) / (900 - 500));
        min-height: calc(20px + (25 - 20) * (100vw - 500px) / (900 - 500));
    }
    
    .card-newsletter__form {
        gap: calc(8px + (15 - 8) * (100vw - 500px) / (900 - 500));
        margin-top: auto;
    }
    
    .subcategories-side {
        overflow-x: auto;
        padding: 10px 0;
    }
}

@media (min-width: 901px) {
    .main-category {
        width: 420px;
    }
    
    .card-newsletter {
        height: 405.38px;
        min-height: 405.38px;
    }
}

@media (max-width: 500px) {
    .card-newsletter {
        min-height: 268.38px;
        height: auto;
    }
    
    .card-newsletter__title {
        font-size: 20px;
        line-height: 1.2;
        max-height: 48px;
        overflow: hidden;
    }
    
    .card-newsletter__content {
        font-size: 13px;
        line-height: 1.3;
        max-height: 52px;
        overflow: hidden;
    }
    
    .card-newsletter__button {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .card-newsletter__placeholder {
        font-size: 11px;
        padding: 6px;
        min-height: 20px;
    }
    
    .card-newsletter__form {
        gap: 8px;
    }
}

@media (max-width: 900px) and (min-width: 901px) {
    .card-newsletter {
        height: 405.38px;
        min-height: 405.38px;
    }
    
    .main-category {
        width: 420px;
    }
}

@media (max-width: 680px) {
    .category-row {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }
    
    .main-category {
        width: 100%;
    }
    
    .subcategories-side {
        width: 100%;
        overflow-x: auto;
        padding: 10px 0;
        gap: 0;
    }
}

.slider {
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    flex-grow: 1;
    cursor: grab;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 30px 0;
    gap: 0;
    position: relative;
}

.slider .list {
    display: flex;
    gap: 0;
    padding: 0 5px;
}

.slider .item {
    width: 200px;
    height: 300px;
    flex-shrink: 0;
    margin-right: 15px;
    cursor: pointer;
}

.sub-card {
    width: 200px;
    height: 300px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    overflow: hidden;
    background: #000000;
}

.bowling-sub .sub-bg {
    background: radial-gradient(
        circle at 80% 20%,
        #1abc9c 0%,
        rgba(26, 188, 156, 0.9) 10%,
        rgba(26, 188, 156, 0.7) 30%,
        rgba(26, 188, 156, 0.5) 50%,
        rgba(26, 188, 156, 0.3) 70%,
        rgba(26, 188, 156, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 95%,
        transparent 100%
    ) !important;
}

.bowling-sub .sub-spinner {
    background: radial-gradient(circle, #1abc9c 0%, #16a085 70%, rgba(0, 0, 0, 0) 100%) !important;
    box-shadow: 0 0 20px rgba(26, 188, 156, 0.5);
}

.water-sub .sub-bg {
    background: radial-gradient(
        circle at 80% 20%,
        #1e90ff 0%,
        rgba(30, 144, 255, 0.9) 10%,
        rgba(30, 144, 255, 0.7) 30%,
        rgba(30, 144, 255, 0.5) 50%,
        rgba(30, 144, 255, 0.3) 70%,
        rgba(30, 144, 255, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 95%,
        transparent 100%
    ) !important;
}

.water-sub .sub-spinner {
    background: radial-gradient(circle, #1e90ff 0%, #00bfff 70%, rgba(0, 0, 0, 0) 100%) !important;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.children-sub .sub-bg {
    background: radial-gradient(
        circle at 80% 20%,
        #ff69b4 0%,
        rgba(255, 105, 180, 0.9) 10%,
        rgba(255, 105, 180, 0.7) 30%,
        rgba(255, 105, 180, 0.5) 50%,
        rgba(255, 105, 180, 0.3) 70%,
        rgba(255, 105, 180, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 95%,
        transparent 100%
    ) !important;
}

.children-sub .sub-spinner {
    background: radial-gradient(circle, #ff69b4 0%, #ffb6c1 70%, rgba(0, 0, 0, 0) 100%) !important;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.karaoke-sub .sub-bg {
    background: radial-gradient(
        circle at 80% 20%,
        #9b59b6 0%,
        rgba(155, 89, 182, 0.9) 10%,
        rgba(155, 89, 182, 0.7) 30%,
        rgba(155, 89, 182, 0.5) 50%,
        rgba(155, 89, 182, 0.3) 70%,
        rgba(155, 89, 182, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 95%,
        transparent 100%
    ) !important;
}

.karaoke-sub .sub-spinner {
    background: radial-gradient(circle, #9b59b6 0%, #8e44ad 70%, rgba(0, 0, 0, 0) 100%) !important;
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.ice-sub .sub-bg {
    background: radial-gradient(
        circle at 80% 20%,
        #3498db 0%,
        rgba(52, 152, 219, 0.9) 10%,
        rgba(52, 152, 219, 0.7) 30%,
        rgba(52, 152, 219, 0.5) 50%,
        rgba(52, 152, 219, 0.3) 70%,
        rgba(52, 152, 219, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 95%,
        transparent 100%
    ) !important;
}

.ice-sub .sub-spinner {
    background: radial-gradient(circle, #3498db 0%, #2980b9 70%, rgba(0, 0, 0, 0) 100%) !important;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

.sub-bg {
    width: 100%;
    height: 100%;
    padding: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

.sub-bg-inner {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.sub-spinner-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.7);
}

.sub-spinner {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    animation: spin 12s linear infinite;
}

.sub-content {
    width: 100%;
    height: 100%;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
}

.sub-info {
    width: 60%;
    padding: 12px 8px 8px 8px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    overflow: visible;
}

.sub-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.sub-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.sub-details {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    gap: 8px;
}

.sub-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.sub-rating {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    font-weight: 600;
}

.sub-arrow {
    height: 100%;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: rgba(255, 255, 255, 0.5);
}

.sub-arrow-icon {
    width: 32px;
    height: 32px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.sub-arrow-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.sub-arrow-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sub-info:hover .sub-address {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 900px) and (min-width: 680px) {
    .slider {
        overflow-x: auto;
        padding: 20px 0;
    }
    
    .slider .item {
        width: 180px;
        height: 320px;
        margin-right: 15px;
    }
    
    .list {
        gap: 0;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .sub-card {
        width: 180px;
        height: 320px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .sub-info {
        width: 60%;
        padding: 12px 8px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(15px);
        background-color: rgba(0, 0, 0, 0.25);
        border-radius: 12px;
    }
    
    .sub-name {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 6px;
        color: white;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .sub-type {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 12px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .sub-details {
        display: flex;
        flex-direction: column;
        margin-top: auto;
        gap: 8px;
    }
    
    .sub-address {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        display: block;
    }
    
    .sub-rating {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
    }
    
    .sub-spinner {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 680px) {
    .slider {
        overflow-x: auto;
        padding: 20px 0;
    }
    
    .slider .item {
        width: 180px;
        height: 320px;
        margin-right: 15px;
    }
    
    .list {
        gap: 0;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .sub-card {
        width: 180px;
        height: 320px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .sub-info {
        width: 60%;
        padding: 12px 8px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(15px);
        background-color: rgba(0, 0, 0, 0.25);
        border-radius: 12px;
    }
    
    .sub-name {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 6px;
        color: white;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .sub-type {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 12px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .sub-details {
        display: flex;
        flex-direction: column;
        margin-top: auto;
        gap: 8px;
    }
    
    .sub-address {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        display: block;
    }
    
    .sub-rating {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
    }
    
    .sub-spinner {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 500px) {
    .slider .item {
        width: 160px;
        height: 300px;
        margin-right: 15px;
    }
    
    .sub-card {
        width: 160px;
        height: 300px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .sub-info {
        padding: 10px 6px;
        min-height: 160px;
        background-color: rgba(0, 0, 0, 0.25);
    }
    
    .sub-name {
        font-size: 16px;
    }
    
    .sub-type {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .sub-address {
        font-size: 12px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .sub-rating {
        font-size: 10px;
    }
    
    .sub-spinner {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .slider .item {
        width: 140px;
        height: 280px;
        margin-right: 15px;
    }
    
    .sub-card {
        width: 140px;
        height: 280px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .sub-info {
        padding: 8px 5px;
        min-height: 140px;
        background-color: rgba(0, 0, 0, 0.25);
    }
    
    .sub-name {
        font-size: 15px;
    }
    
    .sub-type {
        font-size: 10px;
        margin-bottom: 8px;
        word-wrap: break-word;
    }
    
    .sub-address {
        font-size: 11px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .sub-rating {
        font-size: 9px;
    }
    
    .sub-spinner {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 380px) {
    .slider .item {
        width: 130px;
        height: 260px;
        margin-right: 15px;
    }
    
    .sub-card {
        width: 130px;
        height: 260px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .sub-info {
        padding: 6px 4px;
        min-height: 130px;
        background-color: rgba(0, 0, 0, 0.25);
    }
    
    .sub-name {
        font-size: 14px;
    }
    
    .sub-type {
        font-size: 8px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .sub-address {
        font-size: 10px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .sub-rating {
        font-size: 8px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .sub-spinner {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 320px) and (min-width: 221px) {
    .slider .item {
        width: 120px;
        height: 240px;
        margin-right: 15px;
    }
    
    .sub-card {
        width: 120px;
        height: 240px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .sub-info {
        padding: 5px 3px;
        min-height: 120px;
        background-color: rgba(0, 0, 0, 0.25);
    }
    
    .sub-name {
        font-size: 13px;
    }
    
    .sub-type {
        font-size: 7px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .sub-address {
        font-size: 9px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .sub-rating {
        font-size: 7px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .sub-spinner {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 260px) {
    .slider .item {
        width: 110px;
        height: 220px;
        margin-right: 10px;
    }
    
    .sub-card {
        width: 110px;
        height: 220px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .sub-info {
        padding: 4px 2px;
        min-height: 110px;
        background-color: rgba(0, 0, 0, 0.25);
    }
    
    .sub-name {
        font-size: 12px;
    }
    
    .sub-type {
        font-size: 6px;
        line-height: 1.1;
        word-wrap: break-word;
    }
    
    .sub-address {
        font-size: 8px;
        line-height: 1.1;
        word-wrap: break-word;
    }
    
    .sub-rating {
        font-size: 6px;
        line-height: 1.1;
        word-wrap: break-word;
    }
    
    .sub-spinner {
        width: 40px;
        height: 40px;
    }
}

.sub-address {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.sub-details {
    gap: 6px;
    margin-top: auto;
}

.sub-address {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}



.events-sub .sub-bg {
    background: radial-gradient(
        circle at 80% 20%,
        #000000 0%,
        rgba(0, 0, 0, 0.9) 10%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 95%,
        transparent 100%
    ) !important;
}

.events-sub .sub-spinner {
    background: radial-gradient(circle, #000000 0%, #333333 70%, rgba(0, 0, 0, 0) 100%) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


.event-slider-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.event-slider-card .afisha-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

.event-slider-card .afisha-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 6px;
    font-family: 'Bayon', sans-serif;
    z-index: 2;
}

.event-slider-card .afisha-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.event-slider-card .afisha-card-title {
    font-family: 'Bayon', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-slider-card .afisha-card-meta {
    display: flex;
    gap: 6px;
    margin-bottom: 5px;
}

.event-slider-card .afisha-card-city {
    background: rgba(255,255,255,0.9);
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-family: 'Bayon', sans-serif;
    color: #000;
}

.event-slider-card .afisha-card-date {
    background: rgba(255,100,100,0.9);
    color: #fff;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-family: 'Bayon', sans-serif;
}

.event-slider-card .afisha-card-description {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.2;
    font-family: 'Bayon', sans-serif;
    color: rgba(255,255,255,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.events-card {
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
    border-color: #000000;
}

.events-card:hover {
    background: linear-gradient(-45deg, #333333 0%, #555555 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 6px 6px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(0, 0, 0, 0.1);
}

.events-card .card-newsletter__button::before {
    background-color: #333333;
}