.banners-container {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.bonus-stripe {
    width: 100%;
    background: linear-gradient(100deg, rgb(32, 169, 249) -22.53%, rgb(86, 52, 247) 70.27%);
    padding: 8px 0;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 8px;
}

.bonus-stripe__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
}

.bonus-stripe__icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.bonus-stripe__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bonus-stripe__title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.bonus-stripe__subtitle {
    color: white;
    font-size: 14px;
    opacity: 0.9;
}

.bonus-stripe__timer {
    background: rgba(241, 66, 66, 0.8);
    padding: 4px 12px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
}

/* Mobile styles */
@media (max-width: 768px) {
    .bonus-stripe__icon {
        height: 24px;
    }
    
    .bonus-stripe__title {
        font-size: 14px;
    }
    
    .bonus-stripe__subtitle {
        font-size: 12px;
    }
    
    .bonus-stripe__timer {
        font-size: 12px;
        min-width: 90px;
        padding: 4px 8px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .bonus-stripe__content {
        gap: 8px;
    }
    
    .bonus-stripe__title {
        font-size: 12px;
    }
    
    .bonus-stripe__subtitle {
        font-size: 10px;
    }
    
    .bonus-stripe__timer {
        min-width: 80px;
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .bonus-stripe__text {
        display: none;
    }
    
    .bonus-stripe__content {
        gap: 6px;
    }
    
    .bonus-stripe__icon {
        height: 20px;
    }
}

/*Bottom banner*/

.tg-activate-banner {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(100deg, rgb(32, 169, 249) -22.53%, rgb(86, 52, 247) 70.27%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 998;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.iphone-activate-banner {
    position: fixed;
    bottom: 140px;
    left: 0;
    right: 0;
    background: linear-gradient(100deg, rgb(211, 31, 255) -22.53%, rgb(98, 0, 217) 70.27%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 998;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.app-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-right: 12px;
    color: white
}

.app-info {
    flex-grow: 1;
}

.app-banner-link {
    display: flex;
    align-items: center;
    flex-grow: 1;
    text-decoration: none;
}

.app-close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.app-close-btn {
    position: absolute;
    top: -8px;
    left: 1px; /* Меняем right на left */
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 999;
}

.app-bonus {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.app-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.app-download-btn {
    background: #FF230A;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.app-download-btn:hover {
    background: #ff442b;
}

@media (min-width: 769px) {
    .tg-activate-banner {
        bottom: 20px;
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .iphone-activate-banner {
        bottom: 20px;
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    
    .app-bonus {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .app-bonus {
        font-size: 18px;
    }
    
    .app-subtitle {
        font-size: 13px;
    }
    
    .tg-activate-banner {
        bottom: 76px;
        padding: 10px 14px;
    }

    .iphone-activate-banner {
        bottom: 156px;
        padding: 10px 14px;
    }
    
    .app-download-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .app-logo {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
}

.tournament-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0 24px;
}

.tournament-loading, .no-tournaments {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    color: #BCDFFF;
    font-size: 16px;
    background-color: rgba(28, 35, 58, 0.5);
    border-radius: 12px;
}

.tournament-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1c233a;
    height: 220px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.tournament-card__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    text-decoration: none;
}

.tournament-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tournament-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.tournament-card__status {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tournament-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.tournament-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.tournament-card__prize-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
}

.tournament-card__prize-amount {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
}

.tournament-card__details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.tournament-card__detail {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 8px 5px;
    text-align: center;
}

.tournament-card__detail-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.tournament-card__detail-value {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.tournament-cards-carousel {
    display: none;
    position: relative;
    margin: 20px 0 24px;
    overflow: hidden;
}

.tournament-carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    padding: 0 16px;
}

.carousel-card {
    flex: 0 0 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: white;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-arrow-prev {
    left: 10px;
}

.carousel-arrow-next {
    right: 10px;
}

.tournament-see-all {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-tournament-all {
    background-color: #3a66bd;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-tournament-all:hover {
    background-color: #4a76cd;
    color: white;
    text-decoration: none;
}

@media (min-width: 1440px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .tournament-card {
        height: 240px;
    }
    
    .tournament-card__title {
        font-size: 20px;
    }
    
    .tournament-card__prize-amount {
        font-size: 26px;
    }
    
    .tournament-card__detail-label {
        font-size: 13px;
    }
    
    .tournament-card__detail-value {
        font-size: 15px;
    }
}

@media (min-width: 1201px) and (max-width: 1439px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .tournament-card {
        height: 220px;
    }
}

@media (min-width: 961px) and (max-width: 1200px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tournament-card {
        height: 210px;
    }
    
    .tournament-card__title {
        font-size: 17px;
    }
    
    .tournament-card__prize-amount {
        font-size: 22px;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tournament-card {
        height: 200px;
    }
    
    .tournament-card__title {
        font-size: 16px;
    }
    
    .tournament-card__prize-amount {
        font-size: 20px;
    }
    
    .tournament-card__details {
        gap: 8px;
    }
    
    .tournament-card__detail {
        padding: 6px 4px;
    }
    
    .tournament-card__detail-label {
        font-size: 11px;
    }
    
    .tournament-card__detail-value {
        font-size: 13px;
    }
    
    .btn-tournament-all {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tournament-card {
        height: 190px;
    }
    
    .tournament-card__title {
        font-size: 15px;
    }
    
    .tournament-card__prize-amount {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .tournament-card__status {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .tournament-card__details {
        gap: 6px;
    }
    
    .tournament-card__detail {
        padding: 5px 3px;
    }
    
    .tournament-card__detail-label {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .tournament-card__detail-value {
        font-size: 12px;
    }
    
    .btn-tournament-all {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tournament-cards-grid {
        display: none !important;
    }
    
    .tournament-cards-carousel {
        display: block;
    }
    
    .tournament-card {
        height: 220px;
    }
    
    .tournament-card__content {
        padding: 14px;
    }
    
    .tournament-card__title {
        font-size: 16px;
    }
    
    .tournament-card__prize-amount {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .tournament-card__status {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .tournament-card__details {
        gap: 6px;
    }
    
    .tournament-card__detail-label {
        font-size: 10px;
    }
    
    .tournament-card__detail-value {
        font-size: 12px;
    }
    
    .btn-tournament-all {
        width: calc(100% - 32px);
        margin: 0 16px;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .tournament-card {
        height: 200px;
    }
    
    .tournament-card__content {
        padding: 12px;
    }
    
    .tournament-card__title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .tournament-card__prize-label {
        font-size: 12px;
    }
    
    .tournament-card__prize-amount {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .tournament-card__detail-label {
        font-size: 9px;
    }
    
    .tournament-card__detail-value {
        font-size: 11px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .btn-tournament-all {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Add these styles to integrate the tournament cards from the main tournaments page */

/* Tournament cards styling from tournaments page */
.trn-tournament-card {
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #2a2340;
    background-color: #1F1A2F;
    height: 100%;
}

.trn-tournament-card.trn-tournament-vip {
    border: 1px solid #D58C1E;
}

.trn-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.5);
    border-color: #D58C1E;
}

.trn-tournament-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(213, 140, 30, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trn-tournament-card:hover::before {
    opacity: 1;
}

.trn-tournament-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    z-index: 1;
}

/* Картинка турнира */
.trn-tournament-image {
    position: relative;
    height: 192px;
}

.trn-tournament-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, #1F1A2F);
    opacity: 0.7;
}

.trn-tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

/* Статус турнира */
.trn-tournament-status {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #4CAF50;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Контент турнира */
.trn-tournament-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.trn-tournament-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trn-tournament-description {
    color: #8A8A9D;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px;
    transition: all 0.3s ease;
}

.trn-prize-label {
    color: #8A8A9D;
    font-size: 14px;
    margin-bottom: 8px;
}

.trn-prize-amount {
    color: #D58C1E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Сетка статистики */
.trn-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trn-stats-item {
    text-align: center;
}

.trn-stats-label {
    color: #8A8A9D;
    font-size: 14px;
    margin-bottom: 8px;
}

.trn-stats-value {
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Иконки */
.trn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

/* Градиенты для разных типов турниров */
.trn-tournament-slots .trn-tournament-image {
    background: linear-gradient(135deg, #4299E1, #2B6CB0);
}

.trn-tournament-strike-games .trn-tournament-image {
    background: linear-gradient(135deg, #6B46C1, #4C1D95);
}

.trn-tournament-vip .trn-tournament-image {
    background: linear-gradient(135deg, #D69E2E, #975A16);
}

.trn-tournament-gadgets .trn-tournament-image {
    background: linear-gradient(135deg, #48BB78, #2F855A);
}

/* Специальные стили для VIP турниров */
.trn-tournament-vip {
    position: relative;
    overflow: hidden;
}

.trn-tournament-vip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(45deg, #FFD700, #FFA500) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: trn-borderGlow 2s ease-in-out infinite;
}

.trn-tournament-strike-games {
    position: relative;
}

.trn-tournament-strike-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B46C1, #4C1D95);
    border-radius: 16px 16px 0 0;
}

.trn-tournament-strike-games .trn-tournament-title {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.trn-tournament-strike-games .trn-tournament-title::after {
    content: 'PLATFORM';
    position: absolute;
    top: -8px;
    right: -12px;
    font-size: 10px;
    padding: 2px 6px;
    background: linear-gradient(135deg, #6B46C1, #4C1D95);
    border-radius: 4px;
    color: white;
    transform: rotate(15deg);
}

/* Platform features */
.trn-platform-features {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.trn-feature-tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(107, 70, 193, 0.9);
    color: white;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.trn-feature-tag.trn-featured {
    background: rgba(213, 140, 30, 0.9);
}

/* Animations */
@keyframes trn-borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes trn-slide-up {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.trn-tournament-card {
    animation: trn-slide-up 0.3s ease forwards;
}

/* Integration with existing homepage styles */
.tournament-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0 24px;
}

@media (min-width: 1440px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1201px) and (max-width: 1439px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 961px) and (max-width: 1200px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .trn-stats-label {
        font-size: 12px;
    }
    
    .trn-stats-value {
        font-size: 14px;
    }
    
    .trn-tournament-content {
        padding: 16px;
    }
    
    .trn-tournament-title {
        font-size: 18px;
    }
    
    .trn-prize-amount {
        font-size: 20px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .tournament-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trn-tournament-image {
        height: 160px;
    }
    
    .trn-tournament-content {
        padding: 12px;
    }
    
    .trn-tournament-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .trn-prize-amount {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .trn-stats-grid {
        gap: 8px;
    }
    
    .trn-stats-label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .trn-stats-value {
        font-size: 13px;
    }
    
    .trn-tournament-description {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    /* Keep your existing mobile styles for the carousel */
}

/* Make sure carousel still works properly with new card styles */
.carousel-card .trn-tournament-card {
    height: 100%;
    animation: none;
}

/* Fix for carousel - make sure proper sizing */
.carousel-card {
    height: 100%;
}

.trn-tournament-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-decoration: none;
    color: inherit;
}

/* Fix heights and dimensions */
.trn-tournament-card {
    height: 380px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
}

.trn-tournament-image {
    height: 180px; /* Fixed height for image area */
}

.trn-tournament-content {
    flex: 1; /* Take remaining space */
    display: flex;
    flex-direction: column;
}

/* Ensure proper text display */
.trn-tournament-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.trn-tournament-emoji {
    margin-right: 6px;
}

.trn-prize-amount {
    color: #D58C1E;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Fix for mobile carousel */
.carousel-card {
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
}

.carousel-card .trn-tournament-card {
    height: 380px;
}

/* Make sure status badges appear on top */
.trn-tournament-status {
    z-index: 3;
}

/* Fix for SVG icons */
.trn-stats-value svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Animation fix */
.trn-tournament-card {
    animation: none; /* Disable animation to ensure cards appear immediately */
}

/* Make sure cards are visible */
.tournament-cards-grid {
    min-height: 200px;
}

/* Fix for loading state */
.tournament-loading, .no-tournaments {
    padding: 30px;
    text-align: center;
    background: rgba(31, 26, 47, 0.5);
    color: #fff;
    border-radius: 12px;
    margin: 20px 0;
}
