                    .tournament-container {
                        padding: 15px;
                    }
                    .tournament-title {
                        margin-bottom: 25px;
                        font-size: 1.8rem;
                    }
                    .tournament-card {
                        border-radius: 10px;
                        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                    }
                    .tournament-card:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                    }
                    .tournament-description {
                        display: -webkit-box;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
                    @media (max-width: 576px) {
                        .tournament-title {
                            font-size: 1.5rem;
                            text-align: center;
                        }
                        .tournament-card {
                            margin: 0 10px;
                        }
                    }
