.tournament-showcase {
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        position: relative;
    }

    .tournament-showcase::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(231, 76, 60, 0.05) 50%, transparent 70%);
        pointer-events: none;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    .status-section {
        padding: 15px;
        margin-top: 20px;
    }

    .user-games-section {
        padding: 15px;
        margin-top: 20px;
    }

    .user-games-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
    }

    .user-games-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    

    .info-card {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        padding: 20px;
    }

    .status-display {
        text-align: center;
    }

    .status-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }



    .status-actions {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tez-button-wrapper {
        flex: 1;
        min-width: 120px;
        max-width: 200px;
    }

    .info-battleground {
        padding: 15px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .battle-stats {
        position: relative;
        overflow: hidden;
    }

    .stats-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
    }

    .stat-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .stat-row:last-child {
        border-bottom: none;
    }

    .stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stat-value {
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }

    .status-ongoing, .status-active { color: #e74c3c; }
    .status-upcoming { color: #3498db; }
    .status-starting { color: #3498db; }
    .status-completed { color: #2ecc71; }
    .status-registration { color: #f39c12; }
    .status-cancelled { color: #95a5a6; }

    .visibility-public { color: #2ecc71; }
    .visibility-private { color: #e74c3c; }

    .role-creator { color: #f39c12; }
    .role-participant { color: #3498db; }
    .role-spectator { color: rgba(255, 255, 255, 0.6); }

    