.tournaments-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 80vh;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}


.t-header {
    text-align: center;
    padding: 20px 16px;
}

.t-title {
    font-family: 'SFPro', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.t-subtitle {
    font-family: 'SFPro', sans-serif;
    font-size: 12px;
    color: #555;
    margin-top: 4px;
}


.t-soon-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    box-sizing: border-box;
    background: #101010;
    border: 1px solid #1e1e1e;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    overflow: visible;
}


.t-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    animation: t-corner-flash 2.5s ease-in-out infinite;
}

.t-corner::before,
.t-corner::after {
    content: '';
    position: absolute;
    background: #FF4052;
}

.t-corner::before {
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
}

.t-corner::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
}

.t-corner.tl {
    top: 14px;
    left: 14px;
}

.t-corner.tr {
    top: 14px;
    right: 14px;
    transform: scaleX(-1);
}

.t-corner.bl {
    bottom: 14px;
    left: 14px;
    transform: scaleY(-1);
}

.t-corner.br {
    bottom: 14px;
    right: 14px;
    transform: scale(-1);
}


.t-trophy {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    animation: t-trophy-float 3.5s ease-in-out infinite;
}

.t-trophy svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 16px rgba(255, 64, 82, 0.4));
}

.t-trophy-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 64, 82, 0.15) 0%, transparent 70%);
    animation: t-pulse-glow 2.5s ease-in-out infinite;
}


.t-soon-label {
    font-family: 'SFPro', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 5px;
    color: #FF4052;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    background: rgba(255, 64, 82, 0.08);
    border: 1px solid rgba(255, 64, 82, 0.2);
    border-radius: 20px;
    padding: 4px 16px;
}

.t-soon-title {
    font-family: 'SFPro', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: 1px;
}

.t-soon-desc {
    font-family: 'SFPro', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 2rem;
}


.t-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 2rem;
}

.t-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: left;
    transition: border-color 0.2s;
}

.t-feature:hover {
    border-color: rgba(255, 64, 82, 0.3);
}

.t-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 64, 82, 0.08);
    border-radius: 8px;
    flex-shrink: 0;
}

.t-feature span {
    font-family: 'SFPro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
}


.t-countdown-label {
    font-family: 'SFPro', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
}

.t-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.t-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.t-cd-num {
    font-family: 'SFPro', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FF4052;
    line-height: 1;
    min-width: 60px;
    text-align: center;
    background: rgba(255, 64, 82, 0.06);
    border: 1px solid rgba(255, 64, 82, 0.15);
    border-radius: 8px;
    padding: 6px 8px;
}

.t-cd-sep {
    font-family: 'SFPro', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: rgba(255, 64, 82, 0.3);
    margin-bottom: 14px;
}

.t-cd-cap {
    font-family: 'SFPro', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a2a2a;
}


.t-ticker {
    width: 100%;
    max-width: 680px;
    box-sizing: border-box;
    max-width: 680px;
    height: 32px;
    background: rgba(255, 64, 82, 0.85);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    border-radius: 8px;
}

.t-ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: t-ticker 20s linear infinite;
}

.t-ticker-inner span {
    font-family: 'SFPro', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 24px;
    opacity: 0.95;
}

.t-dot {
    color: rgba(255, 255, 255, 0.4) !important;
    padding: 0 4px !important;
}


@media (max-width: 560px) {
    .t-title {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .t-soon-card {
        padding: 2rem 1.25rem;
    }

    .t-soon-title {
        font-size: 22px;
    }

    .t-features {
        grid-template-columns: 1fr;
    }

    .t-cd-num {
        font-size: 24px;
        min-width: 48px;
    }
}

@media (max-width: 768px) {
    .tournaments-wrapper {

    }

    .t-soon-card {
        padding: 2rem 1.25rem;
        border-radius: 12px;
    }

    .t-title {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .t-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .t-soon-title {
        font-size: 20px;
    }

    .t-soon-desc {
        font-size: 13px;
    }

    .t-trophy {
        width: 80px;
        height: 80px;
    }

    .t-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .t-feature {
        padding: 10px 12px;
        gap: 8px;
    }

    .t-feature span {
        font-size: 12px;
    }

    .t-feature-icon {
        width: 28px;
        height: 28px;
    }

    .t-cd-num {
        font-size: 26px;
        min-width: 52px;
    }

    .t-ticker {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .t-title {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .t-soon-card {
        padding: 1.75rem 1rem;
    }


    .t-features {
        grid-template-columns: 1fr;
    }

    .t-feature-icon {
        display: none;
    }

    .t-cd-num {
        font-size: 22px;
        min-width: 44px;
        padding: 4px 6px;
    }

    .t-cd-sep {
        font-size: 18px;
    }

    .t-soon-desc {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .t-title {
        font-size: 20px;
    }

    .t-countdown {
        gap: 4px;
    }

    .t-cd-num {
        font-size: 18px;
        min-width: 38px;
    }

    .t-cd-cap {
        font-size: 8px;
    }
}